From 8f1983c9829945567be711b6d6cfd28d47d52a14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=9F=B3=E5=A4=B4?= <1027926875@qq.com> Date: Mon, 28 Dec 2020 23:32:41 +0800 Subject: [PATCH] fix typo erroring -> erring (#202) --- .../java/org/apache/commons/collections4/list/package-info.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/collections4/list/package-info.java b/src/main/java/org/apache/commons/collections4/list/package-info.java index 91c0121ba..fc59a5c3f 100644 --- a/src/main/java/org/apache/commons/collections4/list/package-info.java +++ b/src/main/java/org/apache/commons/collections4/list/package-info.java @@ -31,7 +31,7 @@ *
  • Transformed - transforms each element added
  • *
  • FixedSize - ensures that the size of the list cannot change
  • *
  • Lazy - creates objects in the list on demand
  • - *
  • Growth - grows the list instead of erroring when set/add used with index beyond the list size
  • + *
  • Growth - grows the list instead of erring when set/add used with index beyond the list size
  • *
  • SetUnique - a list that avoids duplicate entries like a Set
  • * *