From 991133b9900c61470ccb69df26c45421eca81633 Mon Sep 17 00:00:00 2001 From: Andrius Senulis Date: Mon, 30 Nov 2015 14:46:42 +0100 Subject: [PATCH] Update access.rst Spelling mistake in 'check_permissions' method name. --- docs/access.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/access.rst b/docs/access.rst index 5541f0cf..113f553d 100644 --- a/docs/access.rst +++ b/docs/access.rst @@ -90,7 +90,7 @@ In normal use of this mixin, :ref:`LoginRequiredMixin` comes first, then the ``P permission_required = "auth.change_user" template_name = "path/to/template.html" -The ``PermissionRequiredMixin`` also offers a ``check_permssions`` method that should be overridden if you need custom permissions checking. +The ``PermissionRequiredMixin`` also offers a ``check_permissions`` method that should be overridden if you need custom permissions checking. .. _MultiplePermissionsRequiredMixin: @@ -120,7 +120,7 @@ The ``MultiplePermissionsRequiredMixin`` is a more powerful version of the :ref: "any": ("blog.delete_post", "user.change_user") } -The ``MultiplePermissionsRequiredMixin`` also offers a ``check_permssions`` method that should be overridden if you need custom permissions checking. +The ``MultiplePermissionsRequiredMixin`` also offers a ``check_permissions`` method that should be overridden if you need custom permissions checking. .. _GroupRequiredMixin: