From b5d8a5813d7c45ca5f7e19fb6b16634839d6f86e Mon Sep 17 00:00:00 2001 From: Sven Junga Date: Tue, 6 Sep 2016 13:22:33 +0200 Subject: [PATCH] Update 02-lambdas.md Fixed some typo/grammar --- 02-lambdas.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-lambdas.md b/02-lambdas.md index c93aa9a..b918e45 100644 --- a/02-lambdas.md +++ b/02-lambdas.md @@ -9,7 +9,7 @@ popular and relevant, Java is forced to embrace the functional style of programming. Otherwise, Java would become irrelevant. Java 8 is a big step forward in making the world's most popular language adopt -the functional style of programming. To support functional a programming style, +the functional style of programming. To support a functional programming style, the language must support functions as first class citizens. Prior to Java 8, writing a clean functional style code was not possible without the use of an anonymous inner class boilerplate. With the introduction of Lambda expressions,