Skip to content

Commit 995fc00

Browse files
committed
just a tiny grammar thing
1 parent eca818f commit 995fc00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ As you can see the code is much shorter and easier to read. But it gets even sho
107107
Collections.sort(names, (String a, String b) -> b.compareTo(a));
108108
```
109109

110-
For one line method bodies you can skip both the braces `{}` and the `return` keyword. But it gets even more shorter:
110+
For one line method bodies you can skip both the braces `{}` and the `return` keyword. But it gets even shorter:
111111

112112
```java
113113
names.sort((a, b) -> b.compareTo(a));

0 commit comments

Comments
 (0)