aboutsummaryrefslogtreecommitdiffstats
path: root/docs/topics
diff options
context:
space:
mode:
authorTom Christie2014-11-28 14:43:33 +0000
committerTom Christie2014-11-28 14:43:33 +0000
commit9ba29a88d6674d65bf5e8438eba2a072f0d44bf1 (patch)
treedc5fa51ac050c3baec1b5e5fdc051d13baf8618d /docs/topics
parent8e549a76ea0ff6b44e1dcf08ba733a5fbfc004ed (diff)
downloaddjango-rest-framework-9ba29a88d6674d65bf5e8438eba2a072f0d44bf1.tar.bz2
Finalizing 3.0 release notes
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 72268247..b32fe510 100644
--- a/docs/topics/3.0-announcement.md
+++ b/docs/topics/3.0-announcement.md
@@ -329,7 +329,7 @@ The `view_name` and `lookup_field` options have been moved to `PendingDeprecatio
model = MyModel
fields = ('url', 'email', 'notes', 'is_admin')
extra_kwargs = {
- 'url': {'lookup_field': 'uuid'}
+ 'url': {'lookup_field': 'uuid'}
}
Alternatively, specify the field explicitly on the serializer class: