Commit caf51bfc authored by Ramiro Morales's avatar Ramiro Morales
Browse files

[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
parent 33c0a141
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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.