Skip to content

Commit

Permalink
Added a missing semicolon to the README.adoc file (ReactiveX#851)
Browse files Browse the repository at this point in the history
  • Loading branch information
4TT1L4 authored Feb 7, 2020
1 parent 93c6901 commit b1d6cf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Retry retry = Retry.ofDefaults("backendService");
Bulkhead bulkhead = Bulkhead.ofDefaults("backendService");
Supplier<String> supplier = () -> backendService
.doSomething(param1, param2)
.doSomething(param1, param2);
// Decorate your call to backendService.doSomething()
// with a Bulkhead, CircuitBreaker and Retry
Expand Down

0 comments on commit b1d6cf5

Please sign in to comment.