From 95d2c8d826dc143dcb0b9ebcbd478d6ad9c16859 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20F=C3=B6ldh=C3=A1zi?= Date: Tue, 23 Feb 2021 20:47:58 +0100 Subject: [PATCH] Fix typo --- docs/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.adoc b/docs/index.adoc index cb52821b3..e10c3c492 100644 --- a/docs/index.adoc +++ b/docs/index.adoc @@ -1517,7 +1517,7 @@ NOTE: If a collection is returned from a type converter, the _contents_ of the c If the field or method parameter is `null`, picocli will instantiate it when the option or positional parameter is successfully matched. If the `Collection` type is not a concrete class, picocli will make a best effort to instantiate it based on the field type: -`List -> ArrayList`, `OrderedSet -> TreeSet`, `Set -> LinkedHashSet`, `Queue -> LinkedList`, otherwise, `ArrayList`. +`List -> ArrayList`, `SortedSet -> TreeSet`, `Set -> LinkedHashSet`, `Queue -> LinkedList`, otherwise, `ArrayList`. Multi-value options and positional parameters can be defined with a `split` regular expression to allow end users to specify multiple values in a single parameter. See the <> section for details.