diff options
| author | Tom Christie | 2013-05-07 20:35:33 +0200 | 
|---|---|---|
| committer | Tom Christie | 2013-05-07 20:35:33 +0200 | 
| commit | dabe119af5fc732a9870b97265a53399724f2d49 (patch) | |
| tree | 57f80c8fc6788ef6446ce7a4bb2ca008654ea0ae /docs/tutorial/1-serialization.md | |
| parent | 246a376dcf6b62aa6ce42ef8dc69313a58fb7e72 (diff) | |
| download | django-rest-framework-dabe119af5fc732a9870b97265a53399724f2d49.tar.bz2 | |
Typo
Diffstat (limited to 'docs/tutorial/1-serialization.md')
| -rw-r--r-- | docs/tutorial/1-serialization.md | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/tutorial/1-serialization.md b/docs/tutorial/1-serialization.md index 205ee7e0..ed54a876 100644 --- a/docs/tutorial/1-serialization.md +++ b/docs/tutorial/1-serialization.md @@ -204,7 +204,7 @@ We can also serialize querysets instead of model instances.  To do so we simply  ## Using ModelSerializers -Our `SnippetSerializer` class is replicating a lot of information that's also contained in the `Snippet` model.  It would be nice if we could keep out code a bit  more concise. +Our `SnippetSerializer` class is replicating a lot of information that's also contained in the `Snippet` model.  It would be nice if we could keep our code a bit  more concise.  In the same way that Django provides both `Form` classes and `ModelForm` classes, REST framework includes both `Serializer` classes, and `ModelSerializer` classes. | 
