aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/serializers.md
diff options
context:
space:
mode:
authorIan2013-12-09 09:53:16 +0000
committerIan2013-12-09 09:53:16 +0000
commitde319f3e28d27d71fffce7c8f12c23363d5c25eb (patch)
tree82a61f2372e95a3f4e7cc6cc4979a33e24a50a66 /docs/api-guide/serializers.md
parent25ac4cd20ec3525067dd258af7c45d3268bf8482 (diff)
downloaddjango-rest-framework-de319f3e28d27d71fffce7c8f12c23363d5c25eb.tar.bz2
Fix typo "Not" -> "Note"
Diffstat (limited to 'docs/api-guide/serializers.md')
-rw-r--r--docs/api-guide/serializers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/serializers.md b/docs/api-guide/serializers.md
index 4c3fb9d3..6fc25f57 100644
--- a/docs/api-guide/serializers.md
+++ b/docs/api-guide/serializers.md
@@ -425,7 +425,7 @@ You can change the field that is used for object lookups by setting the `lookup_
fields = ('url', 'account_name', 'users', 'created')
lookup_field = 'slug'
-Not that the `lookup_field` will be used as the default on *all* hyperlinked fields, including both the URL identity, and any hyperlinked relationships.
+Note that the `lookup_field` will be used as the default on *all* hyperlinked fields, including both the URL identity, and any hyperlinked relationships.
For more specific requirements such as specifying a different lookup for each field, you'll want to set the fields on the serializer explicitly. For example: