diff options
| author | Tom Christie | 2014-10-09 11:39:01 +0100 | 
|---|---|---|
| committer | Tom Christie | 2014-10-09 11:39:01 +0100 | 
| commit | babdc78e61ac915fa4a01bdfb04e11a32dbf5d79 (patch) | |
| tree | 0231e39d90c630ced6ee94e23a50e2e31b2bc14d | |
| parent | 6637b2fae0dab65447ff0bfd5ac0ba68644446eb (diff) | |
| download | django-rest-framework-babdc78e61ac915fa4a01bdfb04e11a32dbf5d79.tar.bz2 | |
Typo
| -rw-r--r-- | docs/api-guide/validators.md | 0 | ||||
| -rw-r--r-- | docs/topics/3.0-announcement.md | 2 | 
2 files changed, 1 insertions, 1 deletions
| diff --git a/docs/api-guide/validators.md b/docs/api-guide/validators.md new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/docs/api-guide/validators.md diff --git a/docs/topics/3.0-announcement.md b/docs/topics/3.0-announcement.md index 26d261ed..bffc608a 100644 --- a/docs/topics/3.0-announcement.md +++ b/docs/topics/3.0-announcement.md @@ -617,7 +617,7 @@ The view logic for the default method handlers has been significantly simplified  The `pre_save` and `post_save` hooks no longer exist, but are replaced with `perform_create(self, serializer)` and `perform_update(self, serializer)`. -These method should save the object instance by calling `serializer.save()`, adding in any explicit additional arguments as required. They may also perform any custom pre-save or post-save behavior. +These methods should save the object instance by calling `serializer.save()`, adding in any additional arguments as required. They may also perform any custom pre-save or post-save behavior.  For example: | 
