Skip to content

Commit

Permalink
Fix bug in doc (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
rroller authored and jhalterman committed May 8, 2018
1 parent 2357b63 commit 59afa14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -322,7 +322,7 @@ Or on an execution success or failure:
```java
Failsafe.with(retryPolicy)
.onSuccess(cxn -> log.info("Connected to {}", cxn))
.onFailure(failure -> log.error("Failed to create connection", e))
.onFailure(failure -> log.error("Failed to create connection", failure))
.get(this::connect);
```

Expand Down

0 comments on commit 59afa14

Please sign in to comment.