summaryrefslogtreecommitdiff
path: root/docs
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:20:17 +0200
commitc258918a03532e5381818e20866266545edb5206 (patch)
treef30b4d65205135c270d2250da9ba3f1f65a78b6e /docs
parent033636286a7e1507e5471b653b074c1981738110 (diff)
Fixed typo in docs/ref/contrib/admin/index.txt.
Diffstat (limited to 'docs')
-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 13dd6c5350..fc1eab44f1 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -3459,7 +3459,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.