summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/class-based-views/base.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/ref/class-based-views/base.txt b/docs/ref/class-based-views/base.txt
index 542d863db0..00af15380f 100644
--- a/docs/ref/class-based-views/base.txt
+++ b/docs/ref/class-based-views/base.txt
@@ -94,8 +94,10 @@ MRO is an acronym for Method Resolution Order.
.. method:: options(request, *args, **kwargs)
- Handles responding to requests for the OPTIONS HTTP verb. Returns a
- list of the allowed HTTP method names for the view.
+ Handles responding to requests for the OPTIONS HTTP verb. Returns a
+ response with the ``Allow`` header containing a list of the view's
+ allowed HTTP method names.
+
``TemplateView``
================