From 740c42217cb349ab4f03ecba37973ec0c9bed421 Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Fri, 8 Apr 2016 16:53:25 +0100 Subject: [PATCH] The comment didn't make any sense (#1777) Fix doc comment for View.methods --- flask/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/views.py b/flask/views.py index 9bd6b615..6e249180 100644 --- a/flask/views.py +++ b/flask/views.py @@ -48,7 +48,7 @@ class View(object): generated view function! """ - #: A for which methods this pluggable view can handle. + #: A list of methods this view can handle. methods = None #: The canonical way to decorate class-based views is to decorate the