From ab7e2d2cc09fcb357701fe5d5ee4067ae2c542c6 Mon Sep 17 00:00:00 2001 From: Aiden Scandella Date: Wed, 13 Jan 2016 17:17:57 -0800 Subject: [PATCH] Fix whitespace in Default Interface Methods --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 99ac9a48..7ee572f3 100644 --- a/README.md +++ b/README.md @@ -267,7 +267,7 @@ Remember the formula example from the first section? Interface `Formula` defines Default methods **cannot** be accessed from within lambda expressions. The following code does not compile: ```java -Formula formula = (a) -> sqrt( a * 100); +Formula formula = (a) -> sqrt(a * 100); ```