forked from mirror/afero
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:
parent
f0ee686ef7
commit
949437f3b7
|
@ -79,11 +79,11 @@ would.
|
||||||
|
|
||||||
So if my application before had:
|
So if my application before had:
|
||||||
```go
|
```go
|
||||||
os.Open('/tmp/foo')
|
os.Open("/tmp/foo")
|
||||||
```
|
```
|
||||||
We would replace it with:
|
We would replace it with:
|
||||||
```go
|
```go
|
||||||
AppFs.Open('/tmp/foo')
|
AppFs.Open("/tmp/foo")
|
||||||
```
|
```
|
||||||
|
|
||||||
`AppFs` being the variable we defined above.
|
`AppFs` being the variable we defined above.
|
||||||
|
|
Loading…
Reference in New Issue