Merge pull request #512 from geoand/doc-fix

Replaced incorrect @PathParameter with @PathVariable
This commit is contained in:
Spencer Gibb
2015-09-04 09:37:44 -06:00

View File

@@ -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);
}
----