From 949437f3b7e2f3ca7ad553780aec516d0fc310d2 Mon Sep 17 00:00:00 2001 From: Raphael Pour Date: Fri, 9 Jul 2021 12:41:20 +0200 Subject: [PATCH] Readme: fix quotes of step 3 Single quotes are reserved for runes and therefore not allowed for strings in Go: `more than one character in rune literal` --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fb8eaaf..0262ead 100644 --- a/README.md +++ b/README.md @@ -79,11 +79,11 @@ would. So if my application before had: ```go -os.Open('/tmp/foo') +os.Open("/tmp/foo") ``` We would replace it with: ```go -AppFs.Open('/tmp/foo') +AppFs.Open("/tmp/foo") ``` `AppFs` being the variable we defined above.