summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2010-11-09 05:04:05 +0000
committerRamiro Morales <cramm0@gmail.com>2010-11-09 05:04:05 +0000
commit7a5c54e9b74ff612af37689425458e7857f9649f (patch)
tree2992e3cf71126c7e4d12f8c304b2a6c595aec685 /docs
parent2380584783e5a29368c3c3df679d77d69ff89e95 (diff)
Fixed typo in raw SQL docs example.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14501 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-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.