Forráskód Böngészése

Fixed typo in raw SQL docs example.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14501 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Ramiro Morales 14 éve
szülő
commit
7a5c54e9b7
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      docs/topics/db/sql.txt

+ 1 - 1
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.