diff --git a/README.rst b/README.rst index 2d00e67..f9bca64 100644 --- a/README.rst +++ b/README.rst @@ -39,7 +39,7 @@ In myapp/urls.py:: # Create url patterns for both "collections" and single items: urlpatterns = patterns('', - url(r'^widgets', WidgetView.as_view()), + url(r'^widgets$', WidgetView.as_view()), url(r'^widgets/(?P\d+)', WidgetView.as_view()), )