aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2014-12-17 16:20:22 +0000
committerTom Christie2014-12-17 16:20:22 +0000
commit5f933f575e8a993908acc20d972236f34426cee6 (patch)
tree6663e4f03301b428d71cf631611d673969e499a8
parent265ed9377e457ec6b757ff07e0720b0ebefbb89d (diff)
parent530f7a21b3d28ddb24da036e0af6fd7b0a9a2304 (diff)
downloaddjango-rest-framework-5f933f575e8a993908acc20d972236f34426cee6.tar.bz2
Merge pull request #2298 from epicserve/fix_typo
Fixed a typo
-rw-r--r--docs/tutorial/1-serialization.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/1-serialization.md b/docs/tutorial/1-serialization.md
index dea43cc0..20b9d889 100644
--- a/docs/tutorial/1-serialization.md
+++ b/docs/tutorial/1-serialization.md
@@ -200,7 +200,7 @@ Open the file `snippets/serializers.py` again, and edit the `SnippetSerializer`
model = Snippet
fields = ('id', 'title', 'code', 'linenos', 'language', 'style')
-One nice property that serializers have is that you can inspect all the fields in a serializer instance, by printing it's representation. Open the Django shell with `python manange.py shell`, then try the following:
+One nice property that serializers have is that you can inspect all the fields in a serializer instance, by printing it's representation. Open the Django shell with `python manage.py shell`, then try the following:
>>> from snippets.serializers import SnippetSerializer
>>> serializer = SnippetSerializer()