aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/generic-views.md
diff options
context:
space:
mode:
authorTom Christie2013-04-03 09:21:04 +0100
committerTom Christie2013-04-03 09:21:04 +0100
commita18d3df0f60ac4d5ad981b2d463f8408b44286ff (patch)
tree8d6e881587a83fa843141a3f6cd84040dbd43e88 /docs/api-guide/generic-views.md
parent74fbd5ccc5b2aa2f0aab25ead5ffa36024079fcf (diff)
parent5ed70324273d8093335f21155975267b22a641d2 (diff)
downloaddjango-rest-framework-a18d3df0f60ac4d5ad981b2d463f8408b44286ff.tar.bz2
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
Diffstat (limited to 'docs/api-guide/generic-views.md')
-rwxr-xr-x[-rw-r--r--]docs/api-guide/generic-views.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/generic-views.md b/docs/api-guide/generic-views.md
index 20f1be63..cef9a9d4 100644..100755
--- a/docs/api-guide/generic-views.md
+++ b/docs/api-guide/generic-views.md
@@ -200,7 +200,7 @@ Should be mixed in with any [GenericAPIView].
Provides a `.retrieve(request, *args, **kwargs)` method, that implements returning an existing model instance in a response.
-If an object can be retrieve this returns a `200 OK` response, with a serialized representation of the object as the body of the response. Otherwise it will return a `404 Not Found`.
+If an object can be retrieved this returns a `200 OK` response, with a serialized representation of the object as the body of the response. Otherwise it will return a `404 Not Found`.
Should be mixed in with [SingleObjectAPIView].