From 0157765628c50c6b606a7385d82c2e291e88beb5 Mon Sep 17 00:00:00 2001 From: Speiger Date: Sun, 17 Apr 2022 20:24:31 +0200 Subject: [PATCH] Hotfix. --- features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features.md b/features.md index 99b3cbe..d772bf0 100644 --- a/features.md +++ b/features.md @@ -71,7 +71,7 @@ Adding Elements to a Collection usually requires either a for loop or a Arrays.w This isn't an issue with Primitive Collections. ```java public void addMonths(ObjectCollection months) { - months.addAll("January", "February", "March", "April", "May", "June", "July", "August, "September, "October", November", "December"); + months.addAll("January", "February", "March", "April", "May", "June", "July", "August", "September, "October", November", "December"); } public void addElements(ObjectCollection result, String[] elements) {