From 17a46a4d239a640049081b5cdcc1ff20ef63e38a Mon Sep 17 00:00:00 2001 From: Joel Perras Date: Wed, 14 Sep 2011 16:53:05 -0300 Subject: [PATCH] Fixed typo in docstring of `dispatch_request` method of `flask.views.View`. --- flask/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/views.py b/flask/views.py index 2fe34622..60865cd4 100644 --- a/flask/views.py +++ b/flask/views.py @@ -64,7 +64,7 @@ class View(object): def dispatch_request(self): """Subclasses have to override this method to implement the - actual view functionc ode. This method is called with all + actual view function code. This method is called with all the arguments from the URL rule. """ raise NotImplementedError()