Skip to content

Commit

Permalink
Merge pull request #1372 from cescoffier/issues/typo-in-verticle-doc
Browse files Browse the repository at this point in the history
Fix typo in verticle doc
  • Loading branch information
vietj committed Apr 11, 2016
2 parents efbb8d1 + c67cc36 commit 085fe6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/asciidoc/java/override/verticles.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class MyVerticle extends AbstractVerticle {
if (res.succeeded()) {
startFuture.complete();
} else {
startFuture.fail();
startFuture.fail(res.cause());
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/docoverride/verticles/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
* if (res.succeeded()) {
* startFuture.complete();
* } else {
* startFuture.fail();
* startFuture.fail(res.cause());
* }
* });
* }
Expand Down

0 comments on commit 085fe6e

Please sign in to comment.