From ea5fe66f02f93af286317715198e95ea65251315 Mon Sep 17 00:00:00 2001 From: snwfdhmp Date: Sun, 8 Oct 2017 18:09:09 +0200 Subject: [PATCH] Minor improvement --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aef6962..2d9f136 100644 --- a/README.md +++ b/README.md @@ -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.