With the implementation at #2, the following request would match ```js octokit.request('POST /repos/:owner/:repo/issues', options) ``` But if someone replaces the URL parameters before sending a request, it wouldn’t: ```js octokit.request('POST /repos/foo/bar/issues', options) ``` This should be an exception so I don’t think it’s a big problem right now, but it would be better if we would match both requests in future