typo missed by the spellchecker...

This commit is contained in:
Speiger 2022-04-17 20:39:06 +02:00
parent 0157765628
commit c27e852ccb
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ public void addElements(ObjectCollection<String> result, String[] elements) {
```
## containsAny
Everyone hatest comparing if 2 collections have part of each other included.
Everyone hates comparing if 2 collections have part of each other included.
The solution usually requires for loops and keeping track if things were found or not.
And every Java Developer had this issue at least once and wished for a clean solution.
```java