From: Sebastián Ramírez Date: Tue, 26 Dec 2023 20:47:18 +0000 (+0100) Subject: ✏️ Fix typo in release notes X-Git-Tag: 0.109.0~105 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=040ad986d48bb9a400de804f7f25abb856d85e1a;p=thirdparty%2Ffastapi%2Ffastapi.git ✏️ Fix typo in release notes --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index d17e624148..bb96bce668 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -63,7 +63,7 @@ def get_username(): try: yield "Rick" except OwnerError as e: - raise HTTPException(status_code=400, detail=f"Onwer error: {e}") + raise HTTPException(status_code=400, detail=f"Owner error: {e}") @app.get("/items/{item_id}")