Commit dbbf79be by Graham R. Jeffries Committed by Tom Christie

minor docs indentation fix (#4101)

Fixes a minor indentation typo.
parent ffdac0d9
...@@ -226,9 +226,9 @@ The following example will only route to the `list` and `retrieve` actions, and ...@@ -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}$',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment