Browse Source

📝 Update code examples in docs for body, replace name `create_item` with `update_item` when appropriate (#5913)

pull/10915/head
Andrey Otto 1 year ago
committed by GitHub
parent
commit
e9ffa20c8e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs_src/body/tutorial003.py
  2. 2
      docs_src/body/tutorial003_py310.py
  3. 2
      docs_src/body/tutorial004.py
  4. 2
      docs_src/body/tutorial004_py310.py

2
docs_src/body/tutorial003.py

@ -15,5 +15,5 @@ app = FastAPI()
@app.put("/items/{item_id}")
async def create_item(item_id: int, item: Item):
async def update_item(item_id: int, item: Item):
return {"item_id": item_id, **item.dict()}

2
docs_src/body/tutorial003_py310.py

@ -13,5 +13,5 @@ app = FastAPI()
@app.put("/items/{item_id}")
async def create_item(item_id: int, item: Item):
async def update_item(item_id: int, item: Item):
return {"item_id": item_id, **item.dict()}

2
docs_src/body/tutorial004.py

@ -15,7 +15,7 @@ app = FastAPI()
@app.put("/items/{item_id}")
async def create_item(item_id: int, item: Item, q: Union[str, None] = None):
async def update_item(item_id: int, item: Item, q: Union[str, None] = None):
result = {"item_id": item_id, **item.dict()}
if q:
result.update({"q": q})

2
docs_src/body/tutorial004_py310.py

@ -13,7 +13,7 @@ app = FastAPI()
@app.put("/items/{item_id}")
async def create_item(item_id: int, item: Item, q: str | None = None):
async def update_item(item_id: int, item: Item, q: str | None = None):
result = {"item_id": item_id, **item.dict()}
if q:
result.update({"q": q})

Loading…
Cancel
Save