mirror of https://github.com/tiangolo/fastapi.git
✏️ Fix typos in docs (#11926)
This commit is contained in:
parent
b0801e66d3
commit
2e35b176cf
|
|
@ -6,7 +6,7 @@ Here's a short description of how the FastAPI repository is managed and maintain
|
|||
|
||||
I, <a href="https://github.com/tiangolo" target="_blank">@tiangolo</a>, am the creator and owner of the FastAPI repository. 🤓
|
||||
|
||||
I normally give the final review to each PR before merging them. I make the final decisions on the the project, I'm the <a href="https://en.wikipedia.org/wiki/Benevolent_dictator_for_life" class="external-link" target="_blank"><abbr title="Benevolent Dictator For Life">BDFL</abbr></a>. 😅
|
||||
I normally give the final review to each PR before merging them. I make the final decisions on the project, I'm the <a href="https://en.wikipedia.org/wiki/Benevolent_dictator_for_life" class="external-link" target="_blank"><abbr title="Benevolent Dictator For Life">BDFL</abbr></a>. 😅
|
||||
|
||||
## Team
|
||||
|
||||
|
|
|
|||
|
|
@ -21,6 +21,6 @@ async def read_next_item():
|
|||
return {
|
||||
"name": "Island In The Moon",
|
||||
"price": 12.99,
|
||||
"description": "A place to be be playin' and havin' fun",
|
||||
"description": "A place to be playin' and havin' fun",
|
||||
"tags": ["breater"],
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ def get_authors(): # (8)
|
|||
"items": [
|
||||
{
|
||||
"name": "Island In The Moon",
|
||||
"description": "A place to be be playin' and havin' fun",
|
||||
"description": "A place to be playin' and havin' fun",
|
||||
},
|
||||
{"name": "Holy Buddies"},
|
||||
],
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ def test_get_item():
|
|||
assert response.json() == {
|
||||
"name": "Island In The Moon",
|
||||
"price": 12.99,
|
||||
"description": "A place to be be playin' and havin' fun",
|
||||
"description": "A place to be playin' and havin' fun",
|
||||
"tags": ["breater"],
|
||||
"tax": None,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ def test_get_authors():
|
|||
"items": [
|
||||
{
|
||||
"name": "Island In The Moon",
|
||||
"description": "A place to be be playin' and havin' fun",
|
||||
"description": "A place to be playin' and havin' fun",
|
||||
},
|
||||
{"name": "Holy Buddies", "description": None},
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in New Issue