diff options
| author | Tom Christie | 2012-10-09 17:36:03 +0100 |
|---|---|---|
| committer | Tom Christie | 2012-10-09 17:36:03 +0100 |
| commit | b0c370dd2b42db9074c2580ca4a48d7dda088abf (patch) | |
| tree | be87b0be4eb4baf665d20d55d925ceeec8b5a122 /docs/api-guide/serializers.md | |
| parent | 52a2ff8f77dc22a65e6f5780de8183f261472342 (diff) | |
| download | django-rest-framework-b0c370dd2b42db9074c2580ca4a48d7dda088abf.tar.bz2 | |
Fixed couple of incorrect imports in the docs
Diffstat (limited to 'docs/api-guide/serializers.md')
| -rw-r--r-- | docs/api-guide/serializers.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/serializers.md b/docs/api-guide/serializers.md index 4ddc6e0a..fff03241 100644 --- a/docs/api-guide/serializers.md +++ b/docs/api-guide/serializers.md @@ -94,7 +94,7 @@ The `Serializer` class is itself a type of `Field`, and can be used to represent class CommentSerializer(serializers.Serializer): - user = serializers.UserSerializer() + user = UserSerializer() title = serializers.CharField() content = serializers.CharField(max_length=200) created = serializers.DateTimeField() |
