aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorSylvain Bellemare2014-05-05 14:41:10 +0200
committerSylvain Bellemare2014-05-05 14:41:10 +0200
commitcdc7d19034170e5d775166763e6df1220e131d35 (patch)
treeb950a99a3b9ae0e5e33737c4f7172026a2b9fbf1 /docs
parent5333a9312613cffa573b4b38acfaa8d402286174 (diff)
downloaddjango-rest-framework-cdc7d19034170e5d775166763e6df1220e131d35.tar.bz2
Added missing "to" word
Diffstat (limited to 'docs')
-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 979c4a3e..dbe693ed 100644
--- a/docs/tutorial/1-serialization.md
+++ b/docs/tutorial/1-serialization.md
@@ -104,7 +104,7 @@ Don't forget to sync the database for the first time.
## Creating a Serializer class
-The first thing we need to get started on our Web API is provide a way of serializing and deserializing the snippet instances into representations such as `json`. We can do this by declaring serializers that work very similar to Django's forms. Create a file in the `snippets` directory named `serializers.py` and add the following.
+The first thing we need to get started on our Web API is to provide a way of serializing and deserializing the snippet instances into representations such as `json`. We can do this by declaring serializers that work very similar to Django's forms. Create a file in the `snippets` directory named `serializers.py` and add the following.
from django.forms import widgets
from rest_framework import serializers