minor docs indentation fix

Fixes a minor indentation typo that caught my eye.
This commit is contained in:
Graham R. Jeffries 2016-05-05 20:47:32 -04:00
parent ffdac0d936
commit a84a26296a

View File

@ -226,9 +226,9 @@ The following example will only route to the `list` and `retrieve` actions, and
), ),
Route( Route(
url=r'^{prefix}/{lookup}$', url=r'^{prefix}/{lookup}$',
mapping={'get': 'retrieve'}, mapping={'get': 'retrieve'},
name='{basename}-detail', name='{basename}-detail',
initkwargs={'suffix': 'Detail'} initkwargs={'suffix': 'Detail'}
), ),
DynamicDetailRoute( DynamicDetailRoute(
url=r'^{prefix}/{lookup}/{methodnamehyphen}$', url=r'^{prefix}/{lookup}/{methodnamehyphen}$',