Browse Source

Fixed #18527 -- Removed superfluous backslash in CBV docs

Thanks ramilzay at gmail.com for the report.
Claude Paroz 12 years ago
parent
commit
ada961b0d2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/topics/class-based-views/generic-display.txt

+ 1 - 1
docs/topics/class-based-views/generic-display.txt

@@ -397,7 +397,7 @@ custom view::
 
     urlpatterns = patterns('',
         #...
-        url(r'^authors/(?P<pk>\\d+)/$', AuthorDetailView.as_view(), name='author-detail'),
+        url(r'^authors/(?P<pk>\d+)/$', AuthorDetailView.as_view(), name='author-detail'),
     )
 
 Then we'd write our new view -- ``get_object`` is the method that retrieves the