summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-09-09 11:00:21 -0400
committerTim Graham <timograham@gmail.com>2016-09-09 11:00:58 -0400
commit244c4c06f9fbcb5fe96511c8f22b0ee4856baf18 (patch)
treea72563028f353e332ee7be6e46adecd176216274 /docs/ref
parent1f3c66fe9fd8c8e980ecda0a9917319f35ad6676 (diff)
[1.10.x] Normalized spelling of ETag.
Backport of ef021412d5e7eb78c89f0b7cf2ec01bcb959a837 from master
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/middleware.txt2
-rw-r--r--docs/ref/settings.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/middleware.txt b/docs/ref/middleware.txt
index 2d1d0f9604..af851f64a6 100644
--- a/docs/ref/middleware.txt
+++ b/docs/ref/middleware.txt
@@ -462,7 +462,7 @@ Here are some hints about the ordering of various Django middleware classes:
#. :class:`~django.middleware.http.ConditionalGetMiddleware`
- Before ``CommonMiddleware``: uses its ``Etag`` header when
+ Before ``CommonMiddleware``: uses its ``ETag`` header when
:setting:`USE_ETAGS` = ``True``.
#. :class:`~django.contrib.sessions.middleware.SessionMiddleware`
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index d17b224355..34c4dda324 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -2486,7 +2486,7 @@ to ensure your processes are running in the correct environment.
Default: ``False``
-A boolean that specifies whether to output the "Etag" header. This saves
+A boolean that specifies whether to output the ``ETag`` header. This saves
bandwidth but slows down performance. This is used by the ``CommonMiddleware``
(see :doc:`/topics/http/middleware`) and in the``Cache Framework``
(see :doc:`/topics/cache`).