From 7a5c54e9b74ff612af37689425458e7857f9649f Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Tue, 9 Nov 2010 05:04:05 +0000 Subject: [PATCH] Fixed typo in raw SQL docs example. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14501 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/db/sql.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/db/sql.txt b/docs/topics/db/sql.txt index 9f2be7a2ef..cac9a72530 100644 --- a/docs/topics/db/sql.txt +++ b/docs/topics/db/sql.txt @@ -81,7 +81,7 @@ had ``Person`` data in it, you could easily map it into ``Person`` instances:: ... last AS last_name, ... bd AS birth_date, ... pk as id, - ... FROM some_other_table) + ... FROM some_other_table''') As long as the names match, the model instances will be created correctly.