Author: jbronn
Date: 2010-02-26 10:56:39 -0600 (Fri, 26 Feb 2010)
New Revision: 12608

Modified:
   django/branches/releases/1.1.X/docs/intro/tutorial03.txt
Log:
[1.1.X] Fixed #12585 -- Corrected typo in tutorial03.  Thanks, fcsmith.

Backport of r12484 from trunk.


Modified: django/branches/releases/1.1.X/docs/intro/tutorial03.txt
===================================================================
--- django/branches/releases/1.1.X/docs/intro/tutorial03.txt    2010-02-26 
16:40:37 UTC (rev 12607)
+++ django/branches/releases/1.1.X/docs/intro/tutorial03.txt    2010-02-26 
16:56:39 UTC (rev 12608)
@@ -103,7 +103,7 @@
 
     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

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to