From 51884ab9622280236489ed1457995767c2c760bb Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Thu, 22 Feb 2018 16:23:59 +0100 Subject: [PATCH] Add missing parenthesis --- docs/api-guide/routers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/routers.md b/docs/api-guide/routers.md index 6152cc901..3a4f8dd43 100644 --- a/docs/api-guide/routers.md +++ b/docs/api-guide/routers.md @@ -79,7 +79,7 @@ For example: urlpatterns = [ url(r'^forgot-password/$', ForgotPasswordFormView.as_view()), - url(r'^api/', include((router.urls, 'app_name')), + url(r'^api/', include((router.urls, 'app_name'))), ] (`include` also allows an optional `namespace` parameter to also create an _instance namespace_.