aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Groß2013-02-14 00:02:18 -0800
committerStephan Groß2013-02-14 00:02:18 -0800
commit2779ec631c99f48e237e63e5c9f95a48739d364a (patch)
tree8eec5c4718d4e35409e0be7800dafb09c47f008c
parent569dc67a1220f0b577e7873bf7ee3ac54cf60143 (diff)
parent876bd67888c851826288d4c2a669c7def9956858 (diff)
downloaddjango-rest-framework-2779ec631c99f48e237e63e5c9f95a48739d364a.tar.bz2
Merge pull request #655 from floppya/doc-patch
Minor doc fix
-rw-r--r--docs/api-guide/pagination.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/pagination.md b/docs/api-guide/pagination.md
index 51c0fb4b..13d4760a 100644
--- a/docs/api-guide/pagination.md
+++ b/docs/api-guide/pagination.md
@@ -37,7 +37,7 @@ We could now return that data in a `Response` object, and it would be rendered i
## Paginating QuerySets
-Our first example worked because we were using primative objects. If we wanted to paginate a queryset or other complex data, we'd need to specify a serializer to use to serialize the result set itself with.
+Our first example worked because we were using primitive objects. If we wanted to paginate a queryset or other complex data, we'd need to specify a serializer to use to serialize the result set itself.
We can do this using the `object_serializer_class` attribute on the inner `Meta` class of the pagination serializer. For example.