diff --git a/doc_source/go-programming-model-handler-types.md b/doc_source/go-programming-model-handler-types.md index 69bd2aa6..3cb7e23e 100644 --- a/doc_source/go-programming-model-handler-types.md +++ b/doc_source/go-programming-model-handler-types.md @@ -52,7 +52,7 @@ import ( "fmt" "github.com/aws/aws-lambda-go/lambda" ) - `` + type MyEvent struct { Name string `json:"What is your name?"` Age int `json:"How old are you?"` @@ -178,4 +178,4 @@ func LambdaHandler() (int, error) { func main() { lambda.Start(LambdaHandler) } -``` \ No newline at end of file +```