Skip to content

Commit 3c5c61f

Browse files
carlfarringtonlovelydinosaur
authored andcommitted
fix for a couple of missing words (#6444)
1 parent 7c6e34c commit 3c5c61f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/api-guide/permissions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ Together with [authentication] and [throttling], permissions determine whether a
1010

1111
Permission checks are always run at the very start of the view, before any other code is allowed to proceed. Permission checks will typically use the authentication information in the `request.user` and `request.auth` properties to determine if the incoming request should be permitted.
1212

13-
Permissions are used to grant or deny access different classes of users to different parts of the API.
13+
Permissions are used to grant or deny access for different classes of users to different parts of the API.
1414

15-
The simplest style of permission would be to allow access to any authenticated user, and deny access to any unauthenticated user. This corresponds the `IsAuthenticated` class in REST framework.
15+
The simplest style of permission would be to allow access to any authenticated user, and deny access to any unauthenticated user. This corresponds to the `IsAuthenticated` class in REST framework.
1616

1717
A slightly less strict style of permission would be to allow full access to authenticated users, but allow read-only access to unauthenticated users. This corresponds to the `IsAuthenticatedOrReadOnly` class in REST framework.
1818

0 commit comments

Comments
 (0)