✏️ Fix typos in emoji docs and in some source examples (#10438)

This commit is contained in:
Heinz-Alexander Fuetterer
2023-10-20 11:00:44 +02:00
committed by GitHub
parent f785a6ce90
commit ae84ff6e44
9 changed files with 33 additions and 33 deletions

View File

@@ -85,7 +85,7 @@ def test_openapi_schema():
"Subscription": {
"properties": {
"username": {"type": "string", "title": "Username"},
"montly_fee": {"type": "number", "title": "Montly Fee"},
"monthly_fee": {"type": "number", "title": "Monthly Fee"},
"start_date": {
"type": "string",
"format": "date-time",
@@ -93,7 +93,7 @@ def test_openapi_schema():
},
},
"type": "object",
"required": ["username", "montly_fee", "start_date"],
"required": ["username", "monthly_fee", "start_date"],
"title": "Subscription",
},
"ValidationError": {