aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2014-12-15 10:43:20 +0000
committerTom Christie2014-12-15 10:43:20 +0000
commit1f6fd924fea05b9b7eb4bedf44dfdcb2f14c5cad (patch)
tree9d7231be111fe9e13e3de0fcf3fc91a40486c327
parentd75b48dc35be48fe4f4d2909fdce587ec18477e5 (diff)
parent56c09cc1f2bdd22d1a5465ad618a86b04a8b1d6a (diff)
downloaddjango-rest-framework-1f6fd924fea05b9b7eb4bedf44dfdcb2f14c5cad.tar.bz2
Merge pull request #2277 from NullSoldier/doc-fix
Documentation typo
-rw-r--r--docs/api-guide/permissions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/permissions.md b/docs/api-guide/permissions.md
index f068f0f7..ddcefadb 100644
--- a/docs/api-guide/permissions.md
+++ b/docs/api-guide/permissions.md
@@ -104,7 +104,7 @@ This permission is suitable if you want your API to only be accessible to regist
The `IsAdminUser` permission class will deny permission to any user, unless `user.is_staff` is `True` in which case permission will be allowed.
-This permission is suitable is you want your API to only be accessible to a subset of trusted administrators.
+This permission is suitable if you want your API to only be accessible to a subset of trusted administrators.
## IsAuthenticatedOrReadOnly