From 9bc8941f678ed5619c522e65de91be33bf7534a7 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Tue, 12 Jun 2007 00:31:55 +0000 Subject: [PATCH] Fixed #4532 -- Trivial typo fix. Noticed by philliptemple@yahoo.co.uk. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5466 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/db-api.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/db-api.txt b/docs/db-api.txt index 49e4ffa739..e7b8183f6c 100644 --- a/docs/db-api.txt +++ b/docs/db-api.txt @@ -598,7 +598,7 @@ related ``Person`` *and* the related ``City``:: p = b.author # Doesn't hit the database. c = p.hometown # Doesn't hit the database. - sv = Book.objects.get(id=4) # No select_related() in this example. + b = Book.objects.get(id=4) # No select_related() in this example. p = b.author # Hits the database. c = p.hometown # Hits the database.