From ea9a79840ea5be9eeedc200ddd3c53a49c3e8d50 Mon Sep 17 00:00:00 2001 From: Chris Shyi Date: Sat, 5 May 2018 16:29:49 -0400 Subject: [PATCH] Removed leftover '$' character in part 6 of tutorial --- docs/tutorial/6-viewsets-and-routers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/6-viewsets-and-routers.md b/docs/tutorial/6-viewsets-and-routers.md index b68c20d40..ff458e206 100644 --- a/docs/tutorial/6-viewsets-and-routers.md +++ b/docs/tutorial/6-viewsets-and-routers.md @@ -93,7 +93,7 @@ Now that we've bound our resources into concrete views, we can register the view urlpatterns = format_suffix_patterns([ path('', api_root), path('snippets/', snippet_list, name='snippet-list'), - path('snippets//$', snippet_detail, name='snippet-detail'), + path('snippets//', snippet_detail, name='snippet-detail'), path('snippets//highlight/', snippet_highlight, name='snippet-highlight'), path('users/', user_list, name='user-list'), path('users//', user_detail, name='user-detail')