diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt
index 2d680fd..ac18a7c 100644
a
|
b
|
The ``permission_required`` decorator
|
661 | 661 | (i.e. ``polls.can_vote`` for a permission on a model in the ``polls`` |
662 | 662 | application). |
663 | 663 | |
664 | | The decorator may also take an iterable of permissions. |
| 664 | The decorator may also take an iterable of permissions, in which case the |
| 665 | user must have all of the permissions in order to access the view. |
665 | 666 | |
666 | 667 | Note that :func:`~django.contrib.auth.decorators.permission_required()` |
667 | 668 | also takes an optional ``login_url`` parameter:: |