From ef6f063d73101eb11567149b23767603edbfff77 Mon Sep 17 00:00:00 2001 From: Peter Date: Mon, 24 Mar 2025 08:47:20 +0100 Subject: [PATCH] Fix typo in docstring Fixed a minor typo in docstring that showcases the decorator usage. --- fastapi/applications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi/applications.py b/fastapi/applications.py index 6d427cdc2..a02d17912 100644 --- a/fastapi/applications.py +++ b/fastapi/applications.py @@ -4425,7 +4425,7 @@ class FastAPI(Starlette): app = FastAPI() - @app.put("/items/{item_id}") + @app.trace("/items/{item_id}") def trace_item(item_id: str): return None ```