We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eca818f commit 995fc00Copy full SHA for 995fc00
README.md
@@ -107,7 +107,7 @@ As you can see the code is much shorter and easier to read. But it gets even sho
107
Collections.sort(names, (String a, String b) -> b.compareTo(a));
108
```
109
110
-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:
111
112
```java
113
names.sort((a, b) -> b.compareTo(a));
0 commit comments