From f215c52f3cfcaac6aca5a3060e5063bce0aeb08d Mon Sep 17 00:00:00 2001 From: Spencer Gibb Date: Wed, 5 Nov 2014 13:37:19 -0700 Subject: [PATCH] updated docs to reflect that feign will now handle Generics --- docs/src/main/asciidoc/spring-cloud-netflix.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/spring-cloud-netflix.adoc b/docs/src/main/asciidoc/spring-cloud-netflix.adoc index 616c4b06..577543db 100644 --- a/docs/src/main/asciidoc/spring-cloud-netflix.adoc +++ b/docs/src/main/asciidoc/spring-cloud-netflix.adoc @@ -384,7 +384,7 @@ public class Application extends FeignConfigurer { ---- public interface StoreClient { @RequestMapping(method = RequestMethod.GET, value = "/stores") - Stores getStores(); + List getStores(); @RequestMapping(method = RequestMethod.POST, value = "/stores/{storeId}", consumes = "application/json") Store update(@PathParameter("storeId") Long storeId, Store store);