summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2019-12-04 08:59:24 +0100
committerClaude Paroz <claude@2xlibre.net>2019-12-04 09:15:35 +0100
commite8f126aae132e70b33e9c635add1538f4ab3e8ff (patch)
treec08b1ed2675a73bdd600841b38059db4cde98834
parentc8c0c0def738701339712eb20d96b0ed7a94eb9a (diff)
[3.0.x] Removed leftover word in CBV mixins docs.
Backport of d83b585e5cc2b6dec49982670b86d6b4dd339342 from master
-rw-r--r--docs/topics/class-based-views/mixins.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/class-based-views/mixins.txt b/docs/topics/class-based-views/mixins.txt
index fdc53e5c3b..7ec8cc915e 100644
--- a/docs/topics/class-based-views/mixins.txt
+++ b/docs/topics/class-based-views/mixins.txt
@@ -474,9 +474,9 @@ Our new ``AuthorDetail`` looks like this::
# passed in form.cleaned_data['message']
return super().form_valid(form)
-``get_success_url()`` is provides somewhere to redirect to,
-which gets used in the default implementation of
-``form_valid()``. We have to provide our own ``post()`` as noted earlier.
+``get_success_url()`` provides somewhere to redirect to, which gets used
+in the default implementation of ``form_valid()``. We have to provide our
+own ``post()`` as noted earlier.
A better solution
-----------------