From c258918a03532e5381818e20866266545edb5206 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Caune?= Date: Tue, 27 Jul 2021 13:57:04 +0300 Subject: [PATCH] Fixed typo in docs/ref/contrib/admin/index.txt. --- docs/ref/contrib/admin/index.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.