Django

Code

Changeset 745

Show
Ignore:
Timestamp:
09/30/05 11:38:03 (3 years ago)
Author:
adrian
Message:

Fixed typo in docs/tutorial03.txt. Thanks, Aggelos Orfanakos

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/tutorial03.txt

    r679 r745  
    9292 
    9393The ``poll_id=23`` part comes from ``(?P<poll_id>\d+)``. Using 
    94 ``(?<name>pattern)`` "captures" the text matched by ``pattern`` and sends it as 
    95 a keyword argument to the view function. 
     94``(?P<name>pattern)`` "captures" the text matched by ``pattern`` and sends it 
     95as a keyword argument to the view function. 
    9696 
    9797Because the URL patterns are regular expressions, there really is no limit on