diff options
| author | Tom Christie | 2013-12-09 01:54:37 -0800 |
|---|---|---|
| committer | Tom Christie | 2013-12-09 01:54:37 -0800 |
| commit | b599447b717a77338ab989515cb58116bec11d9f (patch) | |
| tree | ec1994ab5f74850ebe5e4ffda4893ebdc29f9ac3 | |
| parent | 2c898bd9018e40a8d0e4718fb2a0e3672e64782c (diff) | |
| parent | de319f3e28d27d71fffce7c8f12c23363d5c25eb (diff) | |
| download | django-rest-framework-b599447b717a77338ab989515cb58116bec11d9f.tar.bz2 | |
Merge pull request #1277 from Ian-Foote/master
Fix typo "Not" -> "Note"
| -rw-r--r-- | docs/api-guide/serializers.md | 2 |
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: |
