aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorKevin Brown2015-01-24 16:30:53 -0500
committerKevin Brown2015-01-24 16:30:53 -0500
commit9687f4ffaebe87e60d674eed552be460449684de (patch)
treed9f05ca0cf1f236f9ced008e74361730e7076c9a /docs
parent0cb5acee7594dd75fb56b4061c73beb6b57e7813 (diff)
parent39da9c7c865533d580ea410458aeb366835b18cc (diff)
downloaddjango-rest-framework-9687f4ffaebe87e60d674eed552be460449684de.tar.bz2
Merge pull request #2457 from jfw/patch-3
minor typo in viewsets docs
Diffstat (limited to 'docs')
-rw-r--r--docs/api-guide/viewsets.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/viewsets.md b/docs/api-guide/viewsets.md
index 3e37cef8..b09dfc9e 100644
--- a/docs/api-guide/viewsets.md
+++ b/docs/api-guide/viewsets.md
@@ -146,7 +146,7 @@ The decorators can additionally take extra arguments that will be set for the ro
def set_password(self, request, pk=None):
...
-Theses decorators will route `GET` requests by default, but may also accept other HTTP methods, by using the `methods` argument. For example:
+These decorators will route `GET` requests by default, but may also accept other HTTP methods, by using the `methods` argument. For example:
@detail_route(methods=['post', 'delete'])
def unset_password(self, request, pk=None):