Explorar o código

Fixed incorrect regex in re_path() example.

René Fleschenberg %!s(int64=7) %!d(string=hai) anos
pai
achega
6e52e2554d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      docs/topics/http/urls.txt

+ 1 - 1
docs/topics/http/urls.txt

@@ -201,7 +201,7 @@ Here's the example URLconf from earlier, rewritten using regular expressions::
         path('articles/2003/', views.special_case_2003),
         re_path(r'^articles/(?P<year>[0-9]{4})/$', views.year_archive),
         re_path(r'^articles/(?P<year>[0-9]{4})/(?P<month>[0-9]{2})/$', views.month_archive),
-        re_path(r'^articles/(?P<year>[0-9]{4})/(?P<month>[0-9]{2})/(?P<slug>[\w-_]+)/$', views.article_detail),
+        re_path(r'^articles/(?P<year>[0-9]{4})/(?P<month>[0-9]{2})/(?P<slug>[\w-]+)/$', views.article_detail),
     ]
 
 This accomplishes roughly the same thing as the previous example, except: