summaryrefslogtreecommitdiff
path: root/docs/ref/class-based-views
diff options
context:
space:
mode:
authorDavid Smith <smithdc@gmail.com>2021-10-18 17:06:00 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-10-18 21:00:28 +0200
commit69b0736fad1d1f0197409ca025b7bcdf5666ae62 (patch)
tree10186ffaf53d0d472429a0e2a6e0bea60ea709b5 /docs/ref/class-based-views
parente2f778d57947d168a875159e6df075255eea4bbc (diff)
Refs #32956 -- Changed docs to treat the acronym HTTP phonetically.
Diffstat (limited to 'docs/ref/class-based-views')
-rw-r--r--docs/ref/class-based-views/base.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/class-based-views/base.txt b/docs/ref/class-based-views/base.txt
index e64fc03555..324a28fcd3 100644
--- a/docs/ref/class-based-views/base.txt
+++ b/docs/ref/class-based-views/base.txt
@@ -86,7 +86,7 @@ MRO is an acronym for Method Resolution Order.
.. method:: dispatch(request, *args, **kwargs)
The ``view`` part of the view -- the method that accepts a ``request``
- argument plus arguments, and returns a HTTP response.
+ argument plus arguments, and returns an HTTP response.
The default implementation will inspect the HTTP method and attempt to
delegate to a method that matches the HTTP method; a ``GET`` will be
@@ -99,7 +99,7 @@ MRO is an acronym for Method Resolution Order.
.. method:: http_method_not_allowed(request, *args, **kwargs)
- If the view was called with a HTTP method it doesn't support, this
+ If the view was called with an HTTP method it doesn't support, this
method is called instead.
The default implementation returns ``HttpResponseNotAllowed`` with a