From ee52eba85acaea54d9be798654f8d55f1d979812 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 8 Aug 2005 21:04:32 +0000 Subject: [PATCH] Fixed formatting problem in docs/tutorial03.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@436 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/tutorial03.txt | 8 ++++---- 1 file 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.