``` 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).
Observed result:
/bar/:second/.Expected result:
/:second/bar/.This is a result of sequential parameter replacing.