Django

Code

Show
Ignore:
Timestamp:
07/21/08 22:01:21 (5 months ago)
Author:
adrian
Message:

Fixed #7814 -- Fixed a number of style inconsistencies in the docs. Thanks, uzi and programmerq

Files:

Legend:

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

    r7294 r8043  
    442442* Django will find the match at ``'^polls/'`` 
    443443* It will strip off the matching text (``"polls/"``) and send the remaining 
    444   text -- ``"34/"`` -- to the 'mysite.polls.urls' urlconf for 
     444  text -- ``"34/"`` -- to the 'mysite.polls.urls' URLconf for 
    445445  further processing. 
    446446 
    447447Now that we've decoupled that, we need to decouple the 
    448 'mysite.polls.urls' urlconf by removing the leading "polls/" from each 
     448'mysite.polls.urls' URLconf by removing the leading "polls/" from each 
    449449line:: 
    450450