Minor improvement

This commit is contained in:
snwfdhmp 2017-10-08 18:09:09 +02:00 committed by GitHub
parent 3de492c3cd
commit ea5fe66f02
1 changed files with 4 additions and 1 deletions

View File

@ -81,7 +81,10 @@ So if my application before had:
```go
os.Open('/tmp/foo')
```
We would replace it with a call to `AppFs.Open('/tmp/foo')`.
We would replace it with:
```go
AppFs.Open('/tmp/foo')
```
`AppFs` being the variable we defined above.