Procházet zdrojové kódy

Fixed #12345 -- Fixed bug in db/models.txt.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12188 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Adrian Holovaty před 15 roky
rodič
revize
74f88194c3
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      docs/topics/db/models.txt

+ 2 - 2
docs/topics/db/models.txt

@@ -950,8 +950,8 @@ If you have a ``Place`` that is also a ``Restaurant``, you can get from the
 ``Place`` object to the ``Restaurant`` object by using the lower-case version
 of the model name::
 
-    >>> p = Place.objects.filter(name="Bob's Cafe")
-    # If Bob's Cafe is a Restaurant object, this will give the child class:
+    >>> p = Place.objects.get(id=12)
+    # If p is a Restaurant object, this will give the child class:
     >>> p.restaurant
     <Restaurant: ...>