Skip to content

Commit e204c04

Browse files
committed
Merge pull request winterbe#12 from eranation/patch-1
just a tiny grammar thing
2 parents eca818f + 995fc00 commit e204c04

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)