Thanks to visit codestin.com Credit goes to github.com
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.
2 parents eca818f + 995fc00 commit e204c04Copy full SHA for e204c04
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