]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏️ Fix typos in docs (#11926)
authorjianghuyiyuan <shuangcui@live.com>
Wed, 31 Jul 2024 14:09:15 +0000 (23:09 +0900)
committerGitHub <noreply@github.com>
Wed, 31 Jul 2024 14:09:15 +0000 (09:09 -0500)
docs/en/docs/management.md
docs_src/dataclasses/tutorial002.py
docs_src/dataclasses/tutorial003.py
tests/test_tutorial/test_dataclasses/test_tutorial002.py
tests/test_tutorial/test_dataclasses/test_tutorial003.py

index ac0ede75f5491c3750e9927eb214462c69d0724d..085a1756f8b5f0b72333fcab4e0427aa8e824dfe 100644 (file)
@@ -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
 
index 08a23808046565ecb4e118b92870f896937a2cc4..ece2f150cce707bc4ad5864636446dfb6474c800 100644 (file)
@@ -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"],
     }
index 34ce1199e52b70e4e87e76233ed8388548bb5f45..c61315513310b37f4dc9b44d172c84cc0fec9031 100644 (file)
@@ -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"},
             ],
index 4146f4cd65dfe9ec3b7222efc4e7077653e36e88..e6d303cfc1e5ba1219b3cbb179c0e3872633995c 100644 (file)
@@ -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,
     }
index dd0e36735eecffa5271c9b9d00fbe2b47f0a2459..e1fa45201f2a49eb2b786a7e3455fb4172db0b78 100644 (file)
@@ -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},
             ],