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
parent
commit
ef6f063d73
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      fastapi/applications.py

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

Loading…
Cancel
Save