Browse Source
Fix typo in docstring
Fixed a minor typo in docstring that showcases the decorator usage.
pull/13532/head
Peter
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
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 |
|
|
|
``` |
|
|
|