From c54769a5ec2ab30772f044507176fe6e43d8a008 Mon Sep 17 00:00:00 2001 From: lxcxjxhx Date: Mon, 6 Jul 2026 11:36:09 +0800 Subject: [PATCH] docs: fix grammar in handling-errors.md Change 'exceptions is renamed' to 'exceptions are renamed' for correct subject-verb agreement. --- docs/en/docs/tutorial/handling-errors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/docs/tutorial/handling-errors.md b/docs/en/docs/tutorial/handling-errors.md index bb99813be..46f913971 100644 --- a/docs/en/docs/tutorial/handling-errors.md +++ b/docs/en/docs/tutorial/handling-errors.md @@ -229,7 +229,7 @@ But when you register an exception handler, you should register it for Starlette This way, if any part of Starlette's internal code, or a Starlette extension or plug-in, raises a Starlette `HTTPException`, your handler will be able to catch and handle it. -In this example, to be able to have both `HTTPException`s in the same code, Starlette's exceptions is renamed to `StarletteHTTPException`: +In this example, to be able to have both `HTTPException`s in the same code, Starlette's exceptions are renamed to `StarletteHTTPException`: ```Python from starlette.exceptions import HTTPException as StarletteHTTPException