✏️ Fix typo in docstring (#13532)

This commit is contained in:
Peter 2025-06-17 12:18:00 +02:00 committed by GitHub
parent 1daf9fddfd
commit b4524145e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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
```