minor docs indentation fix (#4101)

Fixes a minor indentation typo.
This commit is contained in:
Graham R. Jeffries 2016-05-06 06:58:58 -04:00 committed by Tom Christie
parent ffdac0d936
commit dbbf79be64

View File

@ -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}$',