From ada5918bc8ece25f37587017c4e0d3f956bb72e2 Mon Sep 17 00:00:00 2001 From: JeongKyungSeo Date: Thu, 27 Dec 2018 16:11:37 +0900 Subject: [PATCH] Fix typo in exceptions.md --- docs/sanic/exceptions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sanic/exceptions.md b/docs/sanic/exceptions.md index 2fc044d5..90e58106 100644 --- a/docs/sanic/exceptions.md +++ b/docs/sanic/exceptions.md @@ -65,7 +65,7 @@ can subclass Sanic's default error handler as such: ```python from sanic import Sanic -from sanic.handlers import ErrorHnadler +from sanic.handlers import ErrorHandler class CustomErrorHandler(ErrorHandler): def default(self, request, exception):