From 302f03b32137860e44aabd10ee24a556c191c711 Mon Sep 17 00:00:00 2001 From: lucasmdrs Date: Sun, 27 May 2018 14:11:40 -0300 Subject: [PATCH] Fixing Go Tags --- doc_source/go-programming-model-handler-types.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc_source/go-programming-model-handler-types.md b/doc_source/go-programming-model-handler-types.md index 69e6f050..e2d10fda 100644 --- a/doc_source/go-programming-model-handler-types.md +++ b/doc_source/go-programming-model-handler-types.md @@ -54,12 +54,12 @@ import ( ) type MyEvent struct { - Name string 'json:"What is your name?"' - Age int 'json:"How old are you?"' + Name string `json:"What is your name?"` + Age int `json:"How old are you?"` } type MyResponse struct { - Message string 'json:"Answer:"' + Message string `json:"Answer:"` } func HandleLambdaEvent(event MyEvent) (MyResponse, error) { @@ -148,4 +148,4 @@ func main() { ## Next Step -[The Context Object \(Go\) ](go-programming-model-context.md) \ No newline at end of file +[The Context Object \(Go\) ](go-programming-model-context.md)