From 8a39ab07d9b3841d4dd7b2acde34fef3dcbf57c5 Mon Sep 17 00:00:00 2001 From: Nikita Verba <48495591+NikOneZ1@users.noreply.github.com> Date: Sat, 9 Jul 2022 10:28:42 +0300 Subject: [PATCH] Fixed typo in joins and subqueries (#737) --- docs/queries/joins-and-subqueries.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/queries/joins-and-subqueries.md b/docs/queries/joins-and-subqueries.md index bfb1da8..76a83b5 100644 --- a/docs/queries/joins-and-subqueries.md +++ b/docs/queries/joins-and-subqueries.md @@ -75,7 +75,7 @@ album = await Album.objects.select_related("tracks").all() # Python style album = await Album.objects.select_related(Album.tracks).all() -# will return album will all columns tracks +# will return album with all columns tracks ``` You can provide a string or a list of strings (or a field/ list of fields) @@ -532,4 +532,4 @@ objects from other side of the relation. To read more about `QuerysetProxy` visit [querysetproxy][querysetproxy] section -[querysetproxy]: ../relations/queryset-proxy.md \ No newline at end of file +[querysetproxy]: ../relations/queryset-proxy.md