From aea13d5a100b03758fecb88a34daeab4f8aa8426 Mon Sep 17 00:00:00 2001 From: ToolMoney <119289623+ToolMoney@users.noreply.github.com> Date: Thu, 29 Jun 2023 17:20:35 -0700 Subject: [PATCH] fix typo in errorhandling doc --- docs/errorhandling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/errorhandling.rst b/docs/errorhandling.rst index c281055f..faca58c2 100644 --- a/docs/errorhandling.rst +++ b/docs/errorhandling.rst @@ -231,7 +231,7 @@ responses, you could also pass them through directly. Error handlers still respect the exception class hierarchy. If you register handlers for both ``HTTPException`` and ``Exception``, the ``Exception`` handler will not handle ``HTTPException`` subclasses -because it the ``HTTPException`` handler is more specific. +because the ``HTTPException`` handler is more specific. Unhandled Exceptions