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

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8043 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2008-07-22 03:01:21 +00:00
parent ca98003390
commit bfcecfee91
12 changed files with 27 additions and 27 deletions

View file

@ -441,11 +441,11 @@ Here's what happens if a user goes to "/polls/34/" in this system:
* Django will find the match at ``'^polls/'``
* It will strip off the matching text (``"polls/"``) and send the remaining
text -- ``"34/"`` -- to the 'mysite.polls.urls' urlconf for
text -- ``"34/"`` -- to the 'mysite.polls.urls' URLconf for
further processing.
Now that we've decoupled that, we need to decouple the
'mysite.polls.urls' urlconf by removing the leading "polls/" from each
'mysite.polls.urls' URLconf by removing the leading "polls/" from each
line::
urlpatterns = patterns('mysite.polls.views',