mirror of https://github.com/tiangolo/fastapi.git
✏️ Fix typo in docstring (#13532)
This commit is contained in:
parent
1daf9fddfd
commit
b4524145e6
|
|
@ -4425,7 +4425,7 @@ class FastAPI(Starlette):
|
||||||
|
|
||||||
app = FastAPI()
|
app = FastAPI()
|
||||||
|
|
||||||
@app.put("/items/{item_id}")
|
@app.trace("/items/{item_id}")
|
||||||
def trace_item(item_id: str):
|
def trace_item(item_id: str):
|
||||||
return None
|
return None
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue