summaryrefslogtreecommitdiff
path: root/docs/topics/class-based-views
diff options
context:
space:
mode:
authorNatalia <124304+nessita@users.noreply.github.com>2025-08-22 12:36:48 -0300
committernessita <124304+nessita@users.noreply.github.com>2025-08-25 10:51:10 -0300
commit4286a23df64f6ce3b9b6ed097f4d1aac7d9e0de4 (patch)
treee7225d1586c174b5945f595b3759b7c6dddbdae1 /docs/topics/class-based-views
parent01a460f23e470555a733b8980401402b7947bb9f (diff)
Refs #36485 -- Removed double spaces after periods in sentences.
Diffstat (limited to 'docs/topics/class-based-views')
-rw-r--r--docs/topics/class-based-views/generic-display.txt4
-rw-r--r--docs/topics/class-based-views/generic-editing.txt4
-rw-r--r--docs/topics/class-based-views/index.txt2
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/topics/class-based-views/generic-display.txt b/docs/topics/class-based-views/generic-display.txt
index 81c800e213..e72fe5cfe6 100644
--- a/docs/topics/class-based-views/generic-display.txt
+++ b/docs/topics/class-based-views/generic-display.txt
@@ -306,8 +306,8 @@ We'll deal with this problem in the next section.
.. note::
If you get a 404 when requesting ``/books/acme/``, check to ensure you
- actually have a Publisher with the name 'ACME Publishing'. Generic
- views have an ``allow_empty`` parameter for this case. See the
+ actually have a Publisher with the name 'ACME Publishing'. Generic
+ views have an ``allow_empty`` parameter for this case. See the
:doc:`class-based-views reference</ref/class-based-views/index>` for more
details.
diff --git a/docs/topics/class-based-views/generic-editing.txt b/docs/topics/class-based-views/generic-editing.txt
index 173f862891..45c36409ce 100644
--- a/docs/topics/class-based-views/generic-editing.txt
+++ b/docs/topics/class-based-views/generic-editing.txt
@@ -65,7 +65,7 @@ Notes:
Model forms
===========
-Generic views really shine when working with models. These generic
+Generic views really shine when working with models. These generic
views will automatically create a :class:`~django.forms.ModelForm`, so long as
they can work out which model class to use:
@@ -78,7 +78,7 @@ they can work out which model class to use:
Model form views provide a
:meth:`~django.views.generic.edit.ModelFormMixin.form_valid` implementation
-that saves the model automatically. You can override this if you have any
+that saves the model automatically. You can override this if you have any
special requirements; see below for examples.
You don't even need to provide a ``success_url`` for
diff --git a/docs/topics/class-based-views/index.txt b/docs/topics/class-based-views/index.txt
index ec126099f6..f69f70cf5a 100644
--- a/docs/topics/class-based-views/index.txt
+++ b/docs/topics/class-based-views/index.txt
@@ -132,7 +132,7 @@ And the view::
If the view is accessed from a ``GET`` request, an object list is returned in
the response (using the ``book_list.html`` template). But if the client issues
a ``HEAD`` request, the response has an empty body and the ``Last-Modified``
-header indicates when the most recent book was published. Based on this
+header indicates when the most recent book was published. Based on this
information, the client may or may not download the full object list.
.. _async-class-based-views: