From ed3ba21de03b511bc45c8c0e98d716769d35dd17 Mon Sep 17 00:00:00 2001 From: Tony Sherman <100969281+TonySherman@users.noreply.github.com> Date: Thu, 14 Sep 2023 08:22:50 -0400 Subject: [PATCH] Add missing . Co-authored-by: Leandro Damascena Signed-off-by: Tony Sherman <100969281+TonySherman@users.noreply.github.com> --- docs/core/event_handler/api_gateway.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/event_handler/api_gateway.md b/docs/core/event_handler/api_gateway.md index f7d838ce882..161b3b8d4b5 100644 --- a/docs/core/event_handler/api_gateway.md +++ b/docs/core/event_handler/api_gateway.md @@ -866,7 +866,7 @@ Consider a simplified micro function structured REST API that has two routes: * `/users` - an endpoint that will return all users of the application on `GET` requests * `/users/` - an endpoint that looks up a single users details by ID on `GET` requests -Each endpoint will be it's own Lambda function that is configured as a [Lambda integration](https://docs.aws.amazon.com/apigateway/latest/developerguide/getting-started-with-lambda-integration.html){target="_blank"}. This allows you to set different configurations for each lambda (memory size, layers, etc.) +Each endpoint will be it's own Lambda function that is configured as a [Lambda integration](https://docs.aws.amazon.com/apigateway/latest/developerguide/getting-started-with-lambda-integration.html){target="_blank"}. This allows you to set different configurations for each lambda (memory size, layers, etc.). === "`/users` Endpoint" ```python