diff options
| author | Justin Bronn <jbronn@gmail.com> | 2010-02-22 02:29:39 +0000 |
|---|---|---|
| committer | Justin Bronn <jbronn@gmail.com> | 2010-02-22 02:29:39 +0000 |
| commit | 84cffa2ecea8b52508af31281c197f1edbbb6e85 (patch) | |
| tree | 98c96a64230fb606729b7295ca5420ad125ddb43 /docs/intro/tutorial03.txt | |
| parent | d5c4d5fa235e46c94acfbca2cac1839f56668df9 (diff) | |
Fixed #12585 -- Corrected typo in tutorial03. Thanks, fcsmith.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12484 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/intro/tutorial03.txt')
| -rw-r--r-- | docs/intro/tutorial03.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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=<HttpRequest object>, poll_id='23') -The ``poll_id='23'`` part comes from ``(?P<poll_id>\d+)``. Using parenthesis +The ``poll_id='23'`` part comes from ``(?P<poll_id>\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<poll_id>`` defines the name that will be used to identify the matched pattern; and ``\d+`` is a regular expression to |
