Skip to content

Commit

Permalink
Fix a wrong used return type in README
Browse files Browse the repository at this point in the history
  • Loading branch information
felldo committed Sep 28, 2023
1 parent b005287 commit 7a39c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ boolean containsEmoji = EmojiManager.containsEmoji("Hello 😀 World");
#### Extract all emojis from a string in order they appear

```java
Set<Emoji> emojis = EmojiManager.extractEmojisInOrder("Hello 😀 World 👍"); // [😀, 👍]
List<Emoji> emojis = EmojiManager.extractEmojisInOrder("Hello 😀 World 👍"); // [😀, 👍]
```

#### Remove all emojis from a string
Expand Down

0 comments on commit 7a39c0f

Please sign in to comment.