✏️ 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

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