Commit a92307b0 by Spencer Gibb

Merge pull request #512 from geoand/doc-fix

Replaced incorrect @PathParameter with @PathVariable
parents b55832e5 654ccf2d
......@@ -728,7 +728,7 @@ public interface StoreClient {
List<Store> getStores();
@RequestMapping(method = RequestMethod.POST, value = "/stores/{storeId}", consumes = "application/json")
Store update(@PathParameter("storeId") Long storeId, Store store);
Store update(@PathVariable("storeId") Long storeId, Store store);
}
----
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment