From a84a26296a7dc40b8f482fdafa0b6b31091b21a9 Mon Sep 17 00:00:00 2001 From: "Graham R. Jeffries" Date: Thu, 5 May 2016 20:47:32 -0400 Subject: [PATCH] minor docs indentation fix Fixes a minor indentation typo that caught my eye. --- 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}$',