From b698d7762b7a6f500310c56ccb36213a3aa41a93 Mon Sep 17 00:00:00 2001 From: Justin Bronn Date: Fri, 26 Feb 2010 16:56:39 +0000 Subject: [PATCH] [1.1.X] Fixed #12585 -- Corrected typo in tutorial03. Thanks, fcsmith. Backport of r12484 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12608 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/intro/tutorial03.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt index 1438a9e776..41e10a7abd 100644 --- a/docs/intro/tutorial03.txt +++ b/docs/intro/tutorial03.txt @@ -103,7 +103,7 @@ it calls that ``detail()`` function like so:: detail(request=, poll_id='23') -The ``poll_id='23'`` part comes from ``(?P\d+)``. Using parenthesis +The ``poll_id='23'`` part comes from ``(?P\d+)``. Using parentheses around a pattern "captures" the text matched by that pattern and sends it as an argument to the view function; the ``?P`` defines the name that will be used to identify the matched pattern; and ``\d+`` is a regular expression to