From c52039eb35a796aa8cf087bdc0202db9d8658a01 Mon Sep 17 00:00:00 2001 From: Chad Arimura Date: Thu, 25 May 2017 14:54:11 -0700 Subject: [PATCH] readme mods --- examples/tutorial/hello/go/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/tutorial/hello/go/README.md b/examples/tutorial/hello/go/README.md index 6911c158f..1f2893150 100644 --- a/examples/tutorial/hello/go/README.md +++ b/examples/tutorial/hello/go/README.md @@ -41,17 +41,17 @@ That's it! cat hello.payload.json | fn run ``` -2. We received our input through stdin +2. We received our function input through **stdin** ```go json.NewDecoder(os.Stdin).Decode(p) ``` -3. We wrote our output to stdout +3. We wrote our output to **stdout** ```go fmt.Printf("Hello") ``` -4. We sent stderr to the server logs +4. We sent **stderr** to the server logs ```go log.Println("here") ```