summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorpp <pp@users.noreply.github.com>2016-01-10 17:48:16 +0100
committerTim Graham <timograham@gmail.com>2016-01-11 18:05:56 -0500
commit1cbc556bcee57c1d2cbbbe3e6ce3b8d9949f186f (patch)
treeb494f9bc739fef040e013e1cde9bc9e48b1c880d /docs/topics
parent27ef6403c8b9f332feb1f9fe52053ded0b91da85 (diff)
[1.9.x] Added missing period to "etc.".
Backport of b34ff66e5bae3760273255fa5b2525eb21a5eb63 from master
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/class-based-views/intro.txt2
-rw-r--r--docs/topics/conditional-view-processing.txt2
-rw-r--r--docs/topics/files.txt2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/class-based-views/intro.txt b/docs/topics/class-based-views/intro.txt
index 5e3351e90c..2fbbb4b63b 100644
--- a/docs/topics/class-based-views/intro.txt
+++ b/docs/topics/class-based-views/intro.txt
@@ -7,7 +7,7 @@ objects instead of functions. They do not replace function-based views, but
have certain differences and advantages when compared to function-based views:
* Organization of code related to specific HTTP methods (``GET``, ``POST``,
- etc) can be addressed by separate methods instead of conditional branching.
+ etc.) can be addressed by separate methods instead of conditional branching.
* Object oriented techniques such as mixins (multiple inheritance) can be
used to factor code into reusable components.
diff --git a/docs/topics/conditional-view-processing.txt b/docs/topics/conditional-view-processing.txt
index 08805b9346..1cc15572f3 100644
--- a/docs/topics/conditional-view-processing.txt
+++ b/docs/topics/conditional-view-processing.txt
@@ -6,7 +6,7 @@ HTTP clients can send a number of headers to tell the server about copies of a
resource that they have already seen. This is commonly used when retrieving a
Web page (using an HTTP ``GET`` request) to avoid sending all the data for
something the client has already retrieved. However, the same headers can be
-used for all HTTP methods (``POST``, ``PUT``, ``DELETE``, etc).
+used for all HTTP methods (``POST``, ``PUT``, ``DELETE``, etc.).
For each page (response) that Django sends back from a view, it might provide
two HTTP headers: the ``ETag`` header and the ``Last-Modified`` header. These
diff --git a/docs/topics/files.txt b/docs/topics/files.txt
index 81b82e3d73..7a8ce0e801 100644
--- a/docs/topics/files.txt
+++ b/docs/topics/files.txt
@@ -4,7 +4,7 @@ Managing files
This document describes Django's file access APIs for files such as those
uploaded by a user. The lower level APIs are general enough that you could use
-them for other purposes. If you want to handle "static files" (JS, CSS, etc),
+them for other purposes. If you want to handle "static files" (JS, CSS, etc.),
see :doc:`/howto/static-files/index`.
By default, Django stores files locally, using the :setting:`MEDIA_ROOT` and