HalBuilder / halbuilder-core

HalBuilder Core
38 stars 26 forks source link

halbuilder-core: wrong withLink argument order in README example #23

Closed stefanseifert closed 9 years ago

stefanseifert commented 10 years ago

example is currently:

.withLink("/todo-list/search;{searchterm}", "td:search")
.withLink("/todo-list/description", "td:description")

should be:

.withLink("td:search", "/todo-list/search;{searchterm}")
.withLink("td:description", "/todo-list/description")