summaryrefslogtreecommitdiff
path: root/docs/topics/db
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2010-11-09 05:07:42 +0000
committerRamiro Morales <cramm0@gmail.com>2010-11-09 05:07:42 +0000
commitcaf51bfcd40bd718503dff418cd1953da07b1baf (patch)
tree130b00daca6c081a945a5e13ab70eb263a31d493 /docs/topics/db
parent33c0a14180a000c58a771f65fb463499238c3cc9 (diff)
[1.2.X] Fixed typo in raw SQL docs example.
Backport of [14501] from trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14502 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/db')
-rw-r--r--docs/topics/db/sql.txt2
1 files changed, 1 insertions, 1 deletions
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.