aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/views.md
diff options
context:
space:
mode:
authorMichael Elovskikh2013-01-17 17:17:53 +0600
committerMichael Elovskikh2013-01-17 17:17:53 +0600
commited1375485906f261449b92fe6e20715530625d07 (patch)
tree33532af335993279285ebe1abf8bf3a4b2eb6ba4 /docs/api-guide/views.md
parent0f0a07b732a4bd90957c08b01d51e70c7e739d5d (diff)
downloaddjango-rest-framework-ed1375485906f261449b92fe6e20715530625d07.tar.bz2
Added PATCH HTTP method to the docs
Diffstat (limited to 'docs/api-guide/views.md')
-rw-r--r--docs/api-guide/views.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/views.md b/docs/api-guide/views.md
index d1e42ec1..574020f9 100644
--- a/docs/api-guide/views.md
+++ b/docs/api-guide/views.md
@@ -85,7 +85,7 @@ The following methods are called before dispatching to the handler method.
## Dispatch methods
The following methods are called directly by the view's `.dispatch()` method.
-These perform any actions that need to occur before or after calling the handler methods such as `.get()`, `.post()`, `put()` and `.delete()`.
+These perform any actions that need to occur before or after calling the handler methods such as `.get()`, `.post()`, `put()`, `patch()` and `.delete()`.
### .initial(self, request, \*args, **kwargs)