Browse Source

Merge pull request #512 from geoand/doc-fix

Replaced incorrect @PathParameter with @PathVariable
pull/6/head
Spencer Gibb 9 years ago
parent
commit
a92307b060
  1. 2
      docs/src/main/asciidoc/spring-cloud-netflix.adoc

2
docs/src/main/asciidoc/spring-cloud-netflix.adoc

@ -728,7 +728,7 @@ public interface StoreClient { @@ -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);
}
----

Loading…
Cancel
Save