diff --git a/README.md b/README.md index 000faeb..5c8f279 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,6 @@ Urlo does just one thing: var urlo = require("urlo"); var myUrl = "http://my-awesome-site.com/author/:authorId/posts/:postId"; -urlo(url, { authorId: 1, postId: 2, otherParam: "awesome" }) +urlo(myUrl, { authorId: 1, postId: 2, otherParam: "awesome" }) => 'http://my-awesome-site.com/author/1/posts/2?otherParam=awesome' ```