summaryrefslogtreecommitdiff
path: root/docs/tutorial03.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-08 21:04:32 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-08 21:04:32 +0000
commitee52eba85acaea54d9be798654f8d55f1d979812 (patch)
treeb321132307b9b42dda434db68faea70d40dcc6f7 /docs/tutorial03.txt
parent1cc4531f0b734003444193d0a6f7ece365d731c8 (diff)
Fixed formatting problem in docs/tutorial03.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@436 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial03.txt')
-rw-r--r--docs/tutorial03.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorial03.txt b/docs/tutorial03.txt
index 4882496f31..24e24f1193 100644
--- a/docs/tutorial03.txt
+++ b/docs/tutorial03.txt
@@ -19,9 +19,9 @@ application, you might have the following views:
* Blog homepage -- displays the latest few entries.
* Entry "detail" page -- permalink page for a single entry.
* Year-based archive page -- displays all months with entries in the
- given year.
+ given year.
* Month-based archive page -- displays all days with entries in the
- given month.
+ given month.
* Day-based archive page -- displays all entries in the given day.
* Comment action -- handles posting comments to a given entry.
@@ -29,10 +29,10 @@ In our poll application, we'll have the following four views:
* Poll "archive" page -- displays the latest few polls.
* Poll "detail" page -- displays a poll question, with no results but
- with a form to vote.
+ with a form to vote.
* Poll "results" page -- displays results for a particular poll.
* Vote action -- handles voting for a particular choice in a particular
- poll.
+ poll.
In Django, each view is represented by a simple Python function.