Browse Source

Fixed #12585 -- Corrected typo in tutorial03. Thanks, fcsmith.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12484 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Justin Bronn 15 years ago
parent
commit
84cffa2ece
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/intro/tutorial03.txt

+ 1 - 1
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