summaryrefslogtreecommitdiff
path: root/docs/tutorial03.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-01 18:59:35 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-01 18:59:35 +0000
commit7c738177dc061db656f79c7965a67ec269d6cc53 (patch)
treee881a6a7f76e420c6c95607747b319ea1914da01 /docs/tutorial03.txt
parenta4438d74f666e1f5b9e8e0c13463ec5e62a1e11f (diff)
Fixed typo in tutorial03 -- thanks, Robin Munn
git-svn-id: http://code.djangoproject.com/svn/django/trunk@364 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial03.txt')
-rw-r--r--docs/tutorial03.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial03.txt b/docs/tutorial03.txt
index 3f2f97b7b1..eaac221752 100644
--- a/docs/tutorial03.txt
+++ b/docs/tutorial03.txt
@@ -272,7 +272,7 @@ That takes care of setting ``handler404`` in the current module. As you can see
in ``django/conf/urls/defaults.py``, ``handler404`` is set to
``'django.views.defaults.page_not_found'`` by default.
-Two more things to note about 404 views:
+Three more things to note about 404 views:
* The 404 view is also called if Django doesn't find a match after checking
every regular expression in the URLconf.