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:21 -0400
commitef021412d5e7eb78c89f0b7cf2ec01bcb959a837 (patch)
tree1fd05bab465fcccccc2337e8325cce2a3ac89f8a /docs/ref
parentca9c69a9682141bc102ad6751f2feecc3d0d9d21 (diff)
Normalized spelling of ETag.
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 8334c44216..5d8939e3ef 100644
--- a/docs/ref/middleware.txt
+++ b/docs/ref/middleware.txt
@@ -472,7 +472,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 9a60844eb8..507a812fb5 100644
--- a/docs/ref/settings.txt
+++ b/docs/ref/settings.txt
@@ -2527,7 +2527,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`).