From 870c3c2b009cbef80b002011ffcb4b4cc81dac28 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Fri, 21 Apr 2017 14:30:55 +0100 Subject: [PATCH] README.adoc: fix typo --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index e26b30f..5cc2b63 100644 --- a/README.adoc +++ b/README.adoc @@ -146,7 +146,7 @@ if (isFalse()) { ---- Condition.where(isFalse()) .then(() -> doSomething()) - .otherwise(isTrue) + .otherwise(isTrue()) .then(() -> doSomethingElse()); ----