Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc_source/golang-handler.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ And the response would look like this:
}
```

To be exported, field names in the event struct must be capitalized\. For more information on handling events from AWS event sources, see [aws\-lambda\-go/events](https://github.com/aws/aws-lambda-go/tree/main/events)\.
To be exported, field names in the event struct must be capitalized\. For more information on handling events from AWS event sources, see [aws\-lambda\-go/events](https://github.com/aws/aws-lambda-go/tree/master/events)\.

### Valid handler signatures<a name="golang-handler-signatures"></a>

Expand Down Expand Up @@ -176,4 +176,4 @@ func LambdaHandler() (int, error) {
func main() {
lambda.Start(LambdaHandler)
}
```
```