typo in tutorial part 1

This commit is contained in:
Chirag Khatri 2016-02-03 15:25:31 +05:30
parent 0512c394a3
commit 62551bc80f

View File

@ -159,7 +159,7 @@ Deserialization is similar. First we parse a stream into Python native datatype
stream = BytesIO(content)
data = JSONParser().parse(stream)
...then we restore those native datatypes into to a fully populated object instance.
...then we restore those native datatypes into a fully populated object instance.
serializer = SnippetSerializer(data=data)
serializer.is_valid()