Kaydet (Commit) 5fc13947 authored tarafından Jacob Kaplan-Moss's avatar Jacob Kaplan-Moss

Fixed a couple of bugs in the docs.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@39 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 26c65662
......@@ -197,7 +197,7 @@ For example, using the Poll and Choice models from above, if you do the followin
Then subsequent calls to ``c.get_poll()`` won't hit the database.
Note that ``select_related`` follows foreign keys as far as possible. If you have the
following models...
following models::
class Poll(meta.Model):
...
......@@ -214,8 +214,8 @@ following models...
...
)
...then a call to ``singlevotes.get_object(id__exact=4, select_related=True)`` will
cache the related choice *and* the related poll.
then a call to ``singlevotes.get_object(id__exact=4, select_related=True)`` will
cache the related choice *and* the related poll::
>>> sv = singlevotes.get_object(id__exact=4, select_related=True)
>>> c = sv.get_choice() # Doesn't hit the database.
......@@ -290,3 +290,4 @@ For example::
Creating new objects
====================
...
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment