summaryrefslogtreecommitdiff
path: root/docs/tutorial01.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-04-29 01:10:16 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-04-29 01:10:16 +0000
commit07b42f223470083df70134d3dfb3507b20bff768 (patch)
tree905a6c3af2a844d199c76edc73107687c2de460d /docs/tutorial01.txt
parentb4e85c7d1c7dcff1deda70f09ff21a6f99d34da7 (diff)
magic-removal: Fixed #1704, #1682, #1693, #1694, #1695, #1696 -- Made corrections to tutorials. Thanks, Malcolm and crew
git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2776 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial01.txt')
-rw-r--r--docs/tutorial01.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt
index 75f3f090c1..8ce9f6539d 100644
--- a/docs/tutorial01.txt
+++ b/docs/tutorial01.txt
@@ -449,7 +449,7 @@ Once you're in the shell, explore the database API::
>>> p.pub_date = datetime(2005, 4, 1, 0, 0)
>>> p.save()
- # get_list() displays all the polls in the database.
+ # objects.all() displays all the polls in the database.
>>> Poll.objects.all()
[<Poll object>]