mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
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:
parent
ca98003390
commit
bfcecfee91
12 changed files with 27 additions and 27 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue