summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Musketa <daniel@musketa.de>2018-11-14 15:47:22 +0100
committerTim Graham <timograham@gmail.com>2018-11-14 09:48:06 -0500
commit793e26bc4f6bd7060eec364f8e9ca885ce5998ab (patch)
treedb6bcd79ff84c46ebb26acde9537dcb60b1049da
parent353afec70d8d60fac8699bbd3ab10efa96ee41f9 (diff)
[2.1.x] Fixed typo in docs/ref/middleware.txt.
Backport of ca2856fb6297378c40622521d21539097c28eb0b from master.
-rw-r--r--docs/ref/middleware.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/middleware.txt b/docs/ref/middleware.txt
index 82f7223367..caa1c731f8 100644
--- a/docs/ref/middleware.txt
+++ b/docs/ref/middleware.txt
@@ -125,7 +125,7 @@ Conditional GET middleware
.. class:: ConditionalGetMiddleware
Handles conditional GET operations. If the response doesn't have an ``ETag``
-header, the middleware adds one if needed. If the response has a ``ETag`` or
+header, the middleware adds one if needed. If the response has an ``ETag`` or
``Last-Modified`` header, and the request has ``If-None-Match`` or
``If-Modified-Since``, the response is replaced by an
:class:`~django.http.HttpResponseNotModified`.