``` js docuri.route('/:first/:second/', 'r') docuri['r']({first: ':second', second: 'bar'}) ``` Observed result: `/bar/:second/`. Expected result: `/:second/bar/`. This is a result of [sequential parameter replacing](https://github.com/jo/docuri/blob/master/index.js#L96).