From b5d975c054c677c9c4f53804a6d6e7b2d233e961 Mon Sep 17 00:00:00 2001 From: Carsten Otto Date: Fri, 29 Jul 2016 15:17:58 +0200 Subject: [PATCH] fix typo --- hystrix-contrib/hystrix-javanica/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hystrix-contrib/hystrix-javanica/README.md b/hystrix-contrib/hystrix-javanica/README.md index 37392b5a1..76d746c0c 100644 --- a/hystrix-contrib/hystrix-javanica/README.md +++ b/hystrix-contrib/hystrix-javanica/README.md @@ -90,7 +90,7 @@ To set threadPoolKey use ```@HystrixCommand#threadPoolKey()``` ### Asynchronous Execution -To process Hystrix command asynchronously you should return an instance of `AsyncResult` in your command method as in the exapmple below: +To process Hystrix command asynchronously you should return an instance of `AsyncResult` in your command method as in the example below: ```java @HystrixCommand public Future getUserByIdAsync(final String id) {