aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/1-serialization.md
diff options
context:
space:
mode:
authorWill Stott2014-11-26 15:51:28 +0000
committerWill Stott2014-11-26 15:51:28 +0000
commitd0e245baba63dd8e2c0a497fc4f65b34b3d25a4a (patch)
treeb7414916b39689ba1648205e901368cdd75604e3 /docs/tutorial/1-serialization.md
parent34bd2b782875f93471c346230579cc75e52fb2c9 (diff)
downloaddjango-rest-framework-d0e245baba63dd8e2c0a497fc4f65b34b3d25a4a.tar.bz2
grammar
Diffstat (limited to 'docs/tutorial/1-serialization.md')
-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 84ed247a..a3c19858 100644
--- a/docs/tutorial/1-serialization.md
+++ b/docs/tutorial/1-serialization.md
@@ -219,7 +219,7 @@ One nice property that serializers have is that you can inspect all the fields i
language = ChoiceField(choices=[('Clipper', 'FoxPro'), ('Cucumber', 'Gherkin'), ('RobotFramework', 'RobotFramework'), ('abap', 'ABAP'), ('ada', 'Ada')...
style = ChoiceField(choices=[('autumn', 'autumn'), ('borland', 'borland'), ('bw', 'bw'), ('colorful', 'colorful')...
-It's important to remember that `ModelSerializer` classes don't do anything particularly magically, they are simply a shortcut to creating a serializer class with:
+It's important to remember that `ModelSerializer` classes don't do anything particularly magical, they are simply a shortcut for creating serializer classes:
* An automatically determined set of fields.
* Simple default implementations for the `create()` and `update()` methods.