summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorAndrew Northall <andrew@northall.me.uk>2021-08-15 20:11:25 +0100
committerCarlton Gibson <carlton@noumenal.es>2021-08-17 12:18:07 +0200
commitc23aa736264d47c51b2f2ff2e3139187204fc9b8 (patch)
treee8e6a7be363d19b6e85e3edace43e8dcbc80f05f /docs/ref
parent6c3525a09db5177bf4e3856de85bf8b1300402d5 (diff)
Fixed #32964 -- Corrected 'setup'/'set up' usage in docs.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/gis/forms-api.txt2
-rw-r--r--docs/ref/contrib/postgres/fields.txt4
-rw-r--r--docs/ref/forms/widgets.txt2
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/ref/contrib/gis/forms-api.txt b/docs/ref/contrib/gis/forms-api.txt
index daa46716ad..15369ed0e2 100644
--- a/docs/ref/contrib/gis/forms-api.txt
+++ b/docs/ref/contrib/gis/forms-api.txt
@@ -33,7 +33,7 @@ GeoDjango form fields take the following optional arguments.
.. attribute:: Field.geom_type
You generally shouldn't have to set or change that attribute which should
- be setup depending on the field class. It matches the OpenGIS standard
+ be set up depending on the field class. It matches the OpenGIS standard
geometry name.
Form field classes
diff --git a/docs/ref/contrib/postgres/fields.txt b/docs/ref/contrib/postgres/fields.txt
index 6e2fc3af5f..1a83080dc8 100644
--- a/docs/ref/contrib/postgres/fields.txt
+++ b/docs/ref/contrib/postgres/fields.txt
@@ -261,7 +261,7 @@ transform do not change. For example::
Read about `the performance considerations`_ prior to using it.
To use ``citext``, use the :class:`.CITextExtension` operation to
- :ref:`setup the citext extension <create-postgresql-extensions>` in
+ :ref:`set up the citext extension <create-postgresql-extensions>` in
PostgreSQL before the first ``CreateModel`` migration operation.
If you're using an :class:`~django.contrib.postgres.fields.ArrayField`
@@ -307,7 +307,7 @@ transform do not change. For example::
To use this field, you'll need to:
#. Add ``'django.contrib.postgres'`` in your :setting:`INSTALLED_APPS`.
- #. :ref:`Setup the hstore extension <create-postgresql-extensions>` in
+ #. :ref:`Set up the hstore extension <create-postgresql-extensions>` in
PostgreSQL.
You'll see an error like ``can't adapt type 'dict'`` if you skip the first
diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt
index f5d42154e6..48e83a2da9 100644
--- a/docs/ref/forms/widgets.txt
+++ b/docs/ref/forms/widgets.txt
@@ -454,7 +454,7 @@ foundation for custom widgets.
return '{}-{}-{}'.format(year, month, day)
The constructor creates several :class:`Select` widgets in a list. The
- ``super()`` method uses this list to setup the widget.
+ ``super()`` method uses this list to set up the widget.
The required method :meth:`~MultiWidget.decompress` breaks up a
``datetime.date`` value into the day, month, and year values corresponding