Ticket #8600: 8600.doc-typo.diff

File 8600.doc-typo.diff, 687 bytes (added by Julien Phalip, 16 years ago)
  • django/django/docs/topics/http/urls.txt

     
    382382    urlpatterns = patterns('',
    383383        (r'^weblog/',        include('django_website.apps.blog.urls.blog')),
    384384        (r'^documentation/', include('django_website.apps.docs.urls.docs')),
    385         (r'^comments/',      include('django.contrib.comments.urls.comments')),
     385        (r'^comments/',      include('django.contrib.comments.urls')),
    386386    )
    387387
    388388Note that the regular expressions in this example don't have a ``$``
Back to Top