summaryrefslogtreecommitdiff
path: root/docs/tutorial01.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-07-17 06:12:58 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-07-17 06:12:58 +0000
commita1ef6aa10b302d77855172dba62918becc6a758c (patch)
treec96767368050af880b923c92c245412aefbbcbb0 /docs/tutorial01.txt
parentc9cc6f87f9fb77a3d12db1b5640ac465f80418c3 (diff)
Fixed mistake in tutorial01 -- it mentioned expiration date by mistake. Thanks for the pointer, Barryp!
git-svn-id: http://code.djangoproject.com/svn/django/trunk@143 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial01.txt')
-rw-r--r--docs/tutorial01.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt
index 00e2ef02be..b4b11049c6 100644
--- a/docs/tutorial01.txt
+++ b/docs/tutorial01.txt
@@ -116,8 +116,8 @@ The first step in writing a database Web app in Django is to define your models
data model in one place and automatically derive things from it.
In our simple poll app, we'll create two models: polls and choices. A poll has
-a question, a publication date and an expiration date. A choice has two fields:
-the text of the choice and a vote tally. Each choice is associated with a poll.
+a question and a publication date. A choice has two fields: the text of the
+choice and a vote tally. Each choice is associated with a poll.
Edit the ``polls/models/polls.py`` file so that it looks like this::