summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorPēteris Caune <cuu508@gmail.com>2021-07-27 13:57:04 +0300
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-07-28 12:52:02 +0200
commit5fa70c91b4ce2ef7cfc34001cb0989f9d4ac5a79 (patch)
treeef01c4107c1f1f88f2e72ec7ae70d7c0f99f4d91 /docs/ref
parentaace6c531d5b03b023516b244d87cf5608e24d90 (diff)
[3.2.x] Fixed typo in docs/ref/contrib/admin/index.txt.
Backport of c258918a03532e5381818e20866266545edb5206 from main
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/admin/index.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index 23b0456ef9..ee7c5a2cbf 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -3447,7 +3447,7 @@ The ``staff_member_required`` decorator
.. function:: staff_member_required(redirect_field_name='next', login_url='admin:login')
This decorator is used on the admin views that require authorization. A
- view decorated with this function will having the following behavior:
+ view decorated with this function will have the following behavior:
* If the user is logged in, is a staff member (``User.is_staff=True``), and
is active (``User.is_active=True``), execute the view normally.