aboutsummaryrefslogtreecommitdiffstats
path: root/docs/topics
diff options
context:
space:
mode:
authorTom Christie2015-01-29 21:25:07 +0000
committerTom Christie2015-01-29 21:25:07 +0000
commit2a43d9db87f92097bbc8720c3fc8f8a1dfba5a94 (patch)
treecbc175154ae21c78ed20d9bdc436707564ee9e5d /docs/topics
parent60a63ffd2926f2e88dfa91fffa87b7aa0c1d73dd (diff)
parente720927b78a31999f03bfa248329d623ce2c045c (diff)
downloaddjango-rest-framework-2a43d9db87f92097bbc8720c3fc8f8a1dfba5a94.tar.bz2
Merge pull request #2486 from maryokhin/master
Cleanup '.model' shortcut from code and docs
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/3.0-announcement.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/3.0-announcement.md b/docs/topics/3.0-announcement.md
index 5dbc5600..24e69c2d 100644
--- a/docs/topics/3.0-announcement.md
+++ b/docs/topics/3.0-announcement.md
@@ -665,7 +665,7 @@ This code *would be valid* in `2.4.3`:
class Meta:
model = Account
-However this code *would not be valid* in `2.4.3`:
+However this code *would not be valid* in `3.0`:
# Missing `queryset`
class AccountSerializer(serializers.Serializer):