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`
This commit is contained in:
Raphael Pour 2021-07-09 12:41:20 +02:00 committed by Michalis Kargakis
parent f0ee686ef7
commit 949437f3b7
1 changed files with 2 additions and 2 deletions

View File

@ -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.