diff options
| author | Veronica Lynn | 2013-08-07 14:00:06 -0400 | 
|---|---|---|
| committer | Veronica Lynn | 2013-08-07 14:00:06 -0400 | 
| commit | 4d8d2340be4de905af3488dc721c7b94b1371ef0 (patch) | |
| tree | 38b60bc6099d0af27a4a7fcc5dbaf91ca3d76b26 /docs/api-guide/permissions.md | |
| parent | b52beb0734e167349b2cf397047a2ec7fe304b35 (diff) | |
| download | django-rest-framework-4d8d2340be4de905af3488dc721c7b94b1371ef0.tar.bz2 | |
Fixed typos in a bunch of docs
Diffstat (limited to 'docs/api-guide/permissions.md')
| -rw-r--r-- | docs/api-guide/permissions.md | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/api-guide/permissions.md b/docs/api-guide/permissions.md index 5597886d..096ef369 100644 --- a/docs/api-guide/permissions.md +++ b/docs/api-guide/permissions.md @@ -147,7 +147,7 @@ If you need to test if a request is a read operation or a write operation, you s  **Note**: In versions 2.0 and 2.1, the signature for the permission checks always included an optional `obj` parameter, like so: `.has_permission(self, request, view, obj=None)`.  The method would be called twice, first for the global permission checks, with no object supplied, and second for the object-level check when required. -As of version 2.2 this signature has now been replaced with two separate method calls, which is more explict and obvious.  The old style signature continues to work, but it's use will result in a `PendingDeprecationWarning`, which is silent by default.  In 2.3 this will be escalated to a `DeprecationWarning`, and in 2.4 the old-style signature will be removed. +As of version 2.2 this signature has now been replaced with two separate method calls, which is more explicit and obvious.  The old style signature continues to work, but its use will result in a `PendingDeprecationWarning`, which is silent by default.  In 2.3 this will be escalated to a `DeprecationWarning`, and in 2.4 the old-style signature will be removed.  For more details see the [2.2 release announcement][2.2-announcement]. | 
