aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Spafford2014-12-15 02:41:39 -0800
committerJason Spafford2014-12-15 02:41:39 -0800
commit56c09cc1f2bdd22d1a5465ad618a86b04a8b1d6a (patch)
tree0ab143048e52a8734dee1e027d32db79ac607256
parentb951c74df2d10a7497152144baf5d105e804162f (diff)
downloaddjango-rest-framework-56c09cc1f2bdd22d1a5465ad618a86b04a8b1d6a.tar.bz2
Doc 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