From dbbf79be6496c66070fcf24d17b9c19e06925bd4 Mon Sep 17 00:00:00 2001 From: "Graham R. Jeffries" Date: Fri, 6 May 2016 06:58:58 -0400 Subject: [PATCH] minor docs indentation fix (#4101) Fixes a minor indentation typo. --- docs/api-guide/routers.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/api-guide/routers.md b/docs/api-guide/routers.md index d73606da2..10a86bdf0 100644 --- a/docs/api-guide/routers.md +++ b/docs/api-guide/routers.md @@ -226,9 +226,9 @@ The following example will only route to the `list` and `retrieve` actions, and ), Route( url=r'^{prefix}/{lookup}$', - mapping={'get': 'retrieve'}, - name='{basename}-detail', - initkwargs={'suffix': 'Detail'} + mapping={'get': 'retrieve'}, + name='{basename}-detail', + initkwargs={'suffix': 'Detail'} ), DynamicDetailRoute( url=r'^{prefix}/{lookup}/{methodnamehyphen}$',