Browse Source

✏️ Fix typos in docs (#11926)

pull/11933/head
jianghuyiyuan 8 months ago
committed by GitHub
parent
commit
2e35b176cf
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs/en/docs/management.md
  2. 2
      docs_src/dataclasses/tutorial002.py
  3. 2
      docs_src/dataclasses/tutorial003.py
  4. 2
      tests/test_tutorial/test_dataclasses/test_tutorial002.py
  5. 2
      tests/test_tutorial/test_dataclasses/test_tutorial003.py

2
docs/en/docs/management.md

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

2
docs_src/dataclasses/tutorial002.py

@ -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"],
}

2
docs_src/dataclasses/tutorial003.py

@ -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"},
],

2
tests/test_tutorial/test_dataclasses/test_tutorial002.py

@ -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,
}

2
tests/test_tutorial/test_dataclasses/test_tutorial003.py

@ -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…
Cancel
Save