diff options
| author | Tom Christie | 2014-11-01 10:49:37 +0000 |
|---|---|---|
| committer | Tom Christie | 2014-11-01 10:49:37 +0000 |
| commit | 1ef4e6b7a84f358ca1509552f535eb0c65e69aee (patch) | |
| tree | 0fd7facde689aff1b1b91a5103bc4a53bab8d2b0 | |
| parent | 6da3813a172ef58a02ebdb2e80983ef95f6f8f7c (diff) | |
| parent | 964b3401fbcf27afcc2f1e41c5b0e7c538b1c68f (diff) | |
| download | django-rest-framework-1ef4e6b7a84f358ca1509552f535eb0c65e69aee.tar.bz2 | |
Merge pull request #2006 from andybak/patch-1
typo fix
| -rw-r--r-- | docs/topics/3.0-announcement.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/3.0-announcement.md b/docs/topics/3.0-announcement.md index 9aeb5df6..f69c0b25 100644 --- a/docs/topics/3.0-announcement.md +++ b/docs/topics/3.0-announcement.md @@ -323,7 +323,7 @@ Alternatively, specify the field explicitly on the serializer class: #### Fields for model methods and properties. -With `ModelSerilizer` you can now specify field names in the `fields` option that refer to model methods or properties. For example, suppose you have the following model: +With `ModelSerializer` you can now specify field names in the `fields` option that refer to model methods or properties. For example, suppose you have the following model: class Invitation(models.Model): created = models.DateTimeField() |
