From 995fc00ec5e09f909d508c92a7302461cb13c290 Mon Sep 17 00:00:00 2001 From: Eran Medan Date: Mon, 16 Nov 2015 11:01:09 -0500 Subject: [PATCH] just a tiny grammar thing --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 360a48ba..badb54a8 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ As you can see the code is much shorter and easier to read. But it gets even sho Collections.sort(names, (String a, String b) -> b.compareTo(a)); ``` -For one line method bodies you can skip both the braces `{}` and the `return` keyword. But it gets even more shorter: +For one line method bodies you can skip both the braces `{}` and the `return` keyword. But it gets even shorter: ```java names.sort((a, b) -> b.compareTo(a));