aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial
diff options
context:
space:
mode:
authorTom Christie2014-11-25 16:06:45 +0000
committerTom Christie2014-11-25 16:06:45 +0000
commit306916aca126dfbe61fe9d1f0052c5cce921b669 (patch)
treee2f4036fa043ec501d5c85ae3e7e8fb91408f051 /docs/tutorial
parent64d8e3dcb6846610e1908e067962b0c8457a86f8 (diff)
parent84b34d43307704ad8240b871a48dcd6e73848cd1 (diff)
downloaddjango-rest-framework-306916aca126dfbe61fe9d1f0052c5cce921b669.tar.bz2
Merge branch 'd0ugal-mkdocs'
Diffstat (limited to 'docs/tutorial')
-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 db5b9ea7..f9027b68 100644
--- a/docs/tutorial/1-serialization.md
+++ b/docs/tutorial/1-serialization.md
@@ -134,7 +134,7 @@ A serializer class is very similar to a Django `Form` class, and includes simila
The field flags can also control how the serializer should be displayed in certain circumstances, such as when rendering to HTML. The `style={'type': 'textarea'}` flag above is equivelent to using `widget=widgets.Textarea` on a Django `Form` class. This is particularly useful for controlling how the browsable API should be displayed, as we'll see later in the tutorial.
-We can actually also save ourselves some time by using the `ModelSerializer` class, as we'll see later, but for now we'll keep our serializer definition explicit.
+We can actually also save ourselves some time by using the `ModelSerializer` class, as we'll see later, but for now we'll keep our serializer definition explicit.
## Working with Serializers