From 1453c85fe4c9d8cc79830dcbda48896a934d2401 Mon Sep 17 00:00:00 2001 From: Leandro Damascena Date: Thu, 16 Feb 2023 15:50:22 +0000 Subject: [PATCH] docs(event-handler): removing options method from docs --- 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 802b6112e04..9348575535a 100644 --- a/docs/core/event_handler/api_gateway.md +++ b/docs/core/event_handler/api_gateway.md @@ -166,7 +166,7 @@ You can also combine nested paths with greedy regex to catch in between routes. ### HTTP Methods -You can use named decorators to specify the HTTP method that should be handled in your functions. That is, `app.`, where the HTTP method could be `get`, `post`, `put`, `patch`, `delete`, and `options`. +You can use named decorators to specify the HTTP method that should be handled in your functions. That is, `app.`, where the HTTP method could be `get`, `post`, `put`, `patch` and `delete`. === "http_methods.py"