summaryrefslogtreecommitdiff
path: root/docs/tutorial01.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-21 18:26:56 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-21 18:26:56 +0000
commit297731c65727cd2844e0fafd6cfb9e906455cd27 (patch)
treeb47afd874db1fce38876ab62cbddc357c71705d3 /docs/tutorial01.txt
parent33f2304ea91379a85db5f53ccf235846dde3630d (diff)
Fixed #381 -- Clarified tutorial 1. Thanks, ssteiner
git-svn-id: http://code.djangoproject.com/svn/django/trunk@543 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial01.txt')
-rw-r--r--docs/tutorial01.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt
index a5358fa729..4d42202588 100644
--- a/docs/tutorial01.txt
+++ b/docs/tutorial01.txt
@@ -345,8 +345,9 @@ free Python API Django gives you::
[<Poll object>]
Wait a minute. ``<Poll object>`` is, utterly, an unhelpful representation of
-this object. Let's fix that by editing the polls model and adding a
-``__repr__()`` method to both ``Poll`` and ``Choice``::
+this object. Let's fix that by editing the polls model
+(in the ``polls/models/polls.py`` file) and adding a ``__repr__()`` method to
+both ``Poll`` and ``Choice``::
class Poll(meta.Model):
# ...