Skip to content

Commit dbeed24

Browse files
benasocjdavidism
authored andcommitted
Fix typo in MethodView doc (pallets#2028)
1 parent dcfdfc6 commit dbeed24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flask/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def __new__(cls, name, bases, d):
123123
class MethodView(with_metaclass(MethodViewType, View)):
124124
"""Like a regular class-based view but that dispatches requests to
125125
particular methods. For instance if you implement a method called
126-
:meth:`get` it means you will response to ``'GET'`` requests and
126+
:meth:`get` it means it will respond to ``'GET'`` requests and
127127
the :meth:`dispatch_request` implementation will automatically
128128
forward your request to that. Also :attr:`options` is set for you
129129
automatically::

0 commit comments

Comments
 (0)