From c27e852ccb13b0bebdcc41d40119e897b6e8ffae Mon Sep 17 00:00:00 2001 From: Speiger Date: Sun, 17 Apr 2022 20:39:06 +0200 Subject: [PATCH] typo missed by the spellchecker... --- features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features.md b/features.md index d772bf0..65fceb3 100644 --- a/features.md +++ b/features.md @@ -80,7 +80,7 @@ public void addElements(ObjectCollection 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