aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/serializers.py
diff options
context:
space:
mode:
authorTom Christie2012-10-01 07:56:19 -0700
committerTom Christie2012-10-01 07:56:19 -0700
commit1d432cf4327d5c4cdee323310cc80c5f111f0a23 (patch)
treed45a059c40ee2be8c77f6da0c7092a1a57a00ad1 /rest_framework/serializers.py
parent1ace8d6eeadab63377166e8183f7263c065b7882 (diff)
parentb16fb5777168246b1e217640b818a82eb6e2141b (diff)
downloaddjango-rest-framework-1d432cf4327d5c4cdee323310cc80c5f111f0a23.tar.bz2
Merge pull request #274 from tomchristie/pagination
Expand pagination support, add docs
Diffstat (limited to 'rest_framework/serializers.py')
-rw-r--r--rest_framework/serializers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/serializers.py b/rest_framework/serializers.py
index 9cbdb9de..bb48e381 100644
--- a/rest_framework/serializers.py
+++ b/rest_framework/serializers.py
@@ -70,7 +70,7 @@ class SerializerMetaclass(type):
class SerializerOptions(object):
"""
- Meta class options for ModelSerializer
+ Meta class options for Serializer
"""
def __init__(self, meta):
self.nested = getattr(meta, 'nested', False)