From d8400d7cacf541b316930e609fce8b1c53f5a142 Mon Sep 17 00:00:00 2001 From: Oliver Bestwalter Date: Fri, 21 Dec 2018 15:36:58 +0100 Subject: [PATCH] Fix typo in class name --- docs/errorhandling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/errorhandling.rst b/docs/errorhandling.rst index 57222132..557f07ed 100644 --- a/docs/errorhandling.rst +++ b/docs/errorhandling.rst @@ -107,7 +107,7 @@ register and raise that exception class. :: code = 507 description = 'Not enough storage space.' - app.register_error_handler(InsuffcientStorage, handle_507) + app.register_error_handler(InsufficientStorage, handle_507) raise InsufficientStorage()