From 617686e226231fe8ad3f2e49d3efabf6f5f434d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Tue, 31 Oct 2017 03:47:09 +0200 Subject: [PATCH] Fixed 'a'/'an' mix-ups in docs. --- docs/howto/custom-lookups.txt | 4 ++-- docs/ref/utils.txt | 2 +- docs/topics/db/multi-db.txt | 2 +- docs/topics/http/urls.txt | 2 +- docs/topics/testing/advanced.txt | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/howto/custom-lookups.txt b/docs/howto/custom-lookups.txt index 64f7e5aca44..32037a29aa6 100644 --- a/docs/howto/custom-lookups.txt +++ b/docs/howto/custom-lookups.txt @@ -109,7 +109,7 @@ or where it did not exceed a certain amount functionality which is possible in a database backend independent manner, and without duplicating functionality already in Django. -We will start by writing a ``AbsoluteValue`` transformer. This will use the SQL +We will start by writing an ``AbsoluteValue`` transformer. This will use the SQL function ``ABS()`` to transform the value before comparison:: from django.db.models import Transform @@ -257,7 +257,7 @@ operator. (Note that in reality almost all databases support both, including all the official databases supported by Django). We can change the behavior on a specific backend by creating a subclass of -``NotEqual`` with a ``as_mysql`` method:: +``NotEqual`` with an ``as_mysql`` method:: class MySQLNotEqual(NotEqual): def as_mysql(self, compiler, connection): diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt index 9112cd4ff9d..b6595ee293f 100644 --- a/docs/ref/utils.txt +++ b/docs/ref/utils.txt @@ -966,7 +966,7 @@ appropriate entities. .. function:: make_naive(value, timezone=None) - Returns an naive :class:`~datetime.datetime` that represents in + Returns a naive :class:`~datetime.datetime` that represents in ``timezone`` the same point in time as ``value``, ``value`` being an aware :class:`~datetime.datetime`. If ``timezone`` is set to ``None``, it defaults to the :ref:`current time zone `. diff --git a/docs/topics/db/multi-db.txt b/docs/topics/db/multi-db.txt index 7617259b3d3..78f3fe23d92 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 92303a408ae..38648d7de0a 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 2fdefb6a707..e6f07822481 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: