diff --git a/docs/en/docs/management.md b/docs/en/docs/management.md
index ac0ede75f..085a1756f 100644
--- a/docs/en/docs/management.md
+++ b/docs/en/docs/management.md
@@ -6,7 +6,7 @@ Here's a short description of how the FastAPI repository is managed and maintain
I, @tiangolo, 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 BDFL. 😅
+I normally give the final review to each PR before merging them. I make the final decisions on the project, I'm the BDFL. 😅
## Team
diff --git a/docs_src/dataclasses/tutorial002.py b/docs_src/dataclasses/tutorial002.py
index 08a238080..ece2f150c 100644
--- a/docs_src/dataclasses/tutorial002.py
+++ b/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"],
}
diff --git a/docs_src/dataclasses/tutorial003.py b/docs_src/dataclasses/tutorial003.py
index 34ce1199e..c61315513 100644
--- a/docs_src/dataclasses/tutorial003.py
+++ b/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"},
],
diff --git a/tests/test_tutorial/test_dataclasses/test_tutorial002.py b/tests/test_tutorial/test_dataclasses/test_tutorial002.py
index 4146f4cd6..e6d303cfc 100644
--- a/tests/test_tutorial/test_dataclasses/test_tutorial002.py
+++ b/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,
}
diff --git a/tests/test_tutorial/test_dataclasses/test_tutorial003.py b/tests/test_tutorial/test_dataclasses/test_tutorial003.py
index dd0e36735..e1fa45201 100644
--- a/tests/test_tutorial/test_dataclasses/test_tutorial003.py
+++ b/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},
],