Skip to content

Commit

Permalink
Readme: fix quotes of step 3
Browse files Browse the repository at this point in the history
Single quotes are reserved for runes and therefore not allowed for strings in Go: `more than one character in rune literal`
  • Loading branch information
RaphaelPour authored and 0xmichalis committed Nov 10, 2021
1 parent f0ee686 commit 949437f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 949437f

Please sign in to comment.