forked from orbit-oss/flask
Fix typo in MethodView doc (#2028)
This commit is contained in:
parent
dcfdfc6476
commit
dbeed24067
1 changed files with 1 additions and 1 deletions
|
|
@ -123,7 +123,7 @@ class MethodViewType(type):
|
||||||
class MethodView(with_metaclass(MethodViewType, View)):
|
class MethodView(with_metaclass(MethodViewType, View)):
|
||||||
"""Like a regular class-based view but that dispatches requests to
|
"""Like a regular class-based view but that dispatches requests to
|
||||||
particular methods. For instance if you implement a method called
|
particular methods. For instance if you implement a method called
|
||||||
:meth:`get` it means you will response to ``'GET'`` requests and
|
:meth:`get` it means it will respond to ``'GET'`` requests and
|
||||||
the :meth:`dispatch_request` implementation will automatically
|
the :meth:`dispatch_request` implementation will automatically
|
||||||
forward your request to that. Also :attr:`options` is set for you
|
forward your request to that. Also :attr:`options` is set for you
|
||||||
automatically::
|
automatically::
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue