From bb5ab908cc8ab71ddb619daa72a9aa5081af5f8b Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Tue, 26 Nov 2013 13:49:46 -0600 Subject: [PATCH] Fixed a typo in the documentation --- docs/ref/models/querysets.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index d8f7d35c5aa..834b849c8f8 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -955,7 +955,7 @@ This allows prefetching the same relation multiple times with a different >>> vegetarian_pizzas = Pizza.objects.filter(vegetarian=True) >>> Restaurant.objects.prefetch_related( - ... Prefetch('pizzas', to_attr('menu')), + ... Prefetch('pizzas', to_attr='menu'), ... Prefetch('pizzas', queryset=vegetarian_pizzas, to_attr='vegetarian_menu')) Lookups created with custom ``to_attr`` can still be traversed as usual by other