From c5d6de7321ed959d2dbfb91c6aac898406f872b5 Mon Sep 17 00:00:00 2001 From: Jeff Willette Date: Mon, 12 Sep 2016 20:17:03 +0900 Subject: [PATCH] Update to correct location of reverse relation doc --- docs/api-guide/serializers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/serializers.md b/docs/api-guide/serializers.md index 70fab448c..661cdd840 100644 --- a/docs/api-guide/serializers.md +++ b/docs/api-guide/serializers.md @@ -442,7 +442,7 @@ Declaring a `ModelSerializer` looks like this: By default, all the model fields on the class will be mapped to a corresponding serializer fields. -Any relationships such as foreign keys on the model will be mapped to `PrimaryKeyRelatedField`. Reverse relationships are not included by default unless explicitly included as described below. +Any relationships such as foreign keys on the model will be mapped to `PrimaryKeyRelatedField`. Reverse relationships are not included by default unless explicitly included as specified in [serializer relations][relations]. #### Inspecting a `ModelSerializer`