From f5e1d72de2e111ef2449f858b672c9cf4ecbb9ff Mon Sep 17 00:00:00 2001 From: Thijs van Dien Date: Sat, 7 Nov 2015 15:50:43 +0100 Subject: [1.9.x] Fixed #25473 -- Changed underscores in url() names to dashes in docs. To improve consistency, sample URL names that had underscores in them now use dashes instead. That excludes URL names that have some relation to the code, such as those generated by the admin. Thanks guettli for reporting this. Backport of 1679472165e840aef4c8c9ece2fbf4620b87beab from master --- docs/ref/urlresolvers.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/ref') diff --git a/docs/ref/urlresolvers.txt b/docs/ref/urlresolvers.txt index 8e9634c31d..5bad660f48 100644 --- a/docs/ref/urlresolvers.txt +++ b/docs/ref/urlresolvers.txt @@ -18,12 +18,12 @@ For example, given the following ``url``:: from news import views - url(r'^archive/$', views.archive, name='news_archive') + url(r'^archive/$', views.archive, name='news-archive') you can use any of the following to reverse the URL:: # using the named URL - reverse('news_archive') + reverse('news-archive') # passing a callable object # (This is discouraged because you can't reverse namespaced views this way.) -- cgit v1.3