summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/db/multi-db.txt2
-rw-r--r--docs/topics/http/urls.txt2
-rw-r--r--docs/topics/testing/advanced.txt2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/db/multi-db.txt b/docs/topics/db/multi-db.txt
index 7617259b3d..78f3fe23d9 100644
--- a/docs/topics/db/multi-db.txt
+++ b/docs/topics/db/multi-db.txt
@@ -650,7 +650,7 @@ registered with any ``Admin`` instance::
This example sets up two admin sites. On the first site, the
``Author`` and ``Publisher`` objects are exposed; ``Publisher``
-objects have an tabular inline showing books published by that
+objects have a tabular inline showing books published by that
publisher. The second site exposes just publishers, without the
inlines.
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt
index 92303a408a..38648d7de0 100644
--- a/docs/topics/http/urls.txt
+++ b/docs/topics/http/urls.txt
@@ -227,7 +227,7 @@ This usage isn't particularly recommended as it makes it easier to accidentally
introduce errors between the intended meaning of a match and the arguments
of the view.
-In either case, using only one style within an given regex is recommended. When
+In either case, using only one style within a given regex is recommended. When
both styles are mixed, any unnamed groups are ignored and only named groups are
passed to the view function.
diff --git a/docs/topics/testing/advanced.txt b/docs/topics/testing/advanced.txt
index 2fdefb6a70..e6f0782248 100644
--- a/docs/topics/testing/advanced.txt
+++ b/docs/topics/testing/advanced.txt
@@ -298,7 +298,7 @@ Advanced features of ``TransactionTestCase``
recommended that you do not hard code primary key values in tests.
Using ``reset_sequences = True`` will slow down the test, since the primary
- key reset is an relatively expensive database operation.
+ key reset is a relatively expensive database operation.
.. _testing-reusable-applications: