Browse Source

Removed leftover word in CBV mixins docs.

Claude Paroz 5 years ago
parent
commit
d83b585e5c
1 changed files with 3 additions and 3 deletions
  1. 3 3
      docs/topics/class-based-views/mixins.txt

+ 3 - 3
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
 -----------------