1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

Merge pull request #1515 from huang-x-h/patch-1

docs:  Comparator typo
This commit is contained in:
Guide哥 2022-02-08 21:49:02 +08:00 committed by GitHub
commit 8ccc1b2fa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,7 +128,7 @@ new Thread(new Runnable() {
new Thread(() -> System.out.println("It's a lambda function!")).start(); new Thread(() -> System.out.println("It's a lambda function!")).start();
``` ```
**2.`Comperator` 接口** **2.`Comparator` 接口**
```java ```java
List<Integer> strings = Arrays.asList(1, 2, 3); List<Integer> strings = Arrays.asList(1, 2, 3);