From 70f91b74335bcc252602f547f0ac755ce1a1b379 Mon Sep 17 00:00:00 2001 From: Remko Popma Date: Wed, 17 Nov 2021 09:43:46 +0900 Subject: [PATCH] [#1409][#1463] DOC: fix typo --- docs/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.adoc b/docs/index.adoc index c143a1ede..592a3e251 100644 --- a/docs/index.adoc +++ b/docs/index.adoc @@ -3161,7 +3161,7 @@ Picocli does not instantiate the group if none of the options in the group is sp Below are some recommendations for using default values in argument group options and positional parameters: -* specify default values in both the `@Option` annotation, and in the initial value of the `@Option`-annotated field. Yes, that means some duplication. This recommendation holds for positional `@Parameters`. +* specify default values in both the `@Option` annotation, and in the initial value of the `@Option`-annotated field. Yes, that means some duplication. This recommendation also holds for positional `@Parameters`. * the application needs to manually instantiate the `@ArgGroup`-annotated field. More details follow below. The default value in the `@Option` or `@Parameters` annotation means that picocli can <> in the usage help, and the initial value means that any new instance of the group that contains the option will already have the default value assigned to that option field.