From fd4164f8ad5905ef218f81e9398b35bce9a1a824 Mon Sep 17 00:00:00 2001 From: Remko Popma Date: Sat, 19 Feb 2022 19:37:27 +0900 Subject: [PATCH] [#1125] fix link syntax in RELEASE-NOTES --- RELEASE-NOTES.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index e3ab33ace..5cdd00eb0 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -58,11 +58,11 @@ This release introduces two parser configuration options to change this behaviou When set to `true`, all options in the command (options that take a parameter) can consume values that match option names or subcommand names. -This means that any option will consume the maximum number of arguments possible for its <>. +This means that any option will consume the maximum number of arguments possible for its [arity](https://picocli.info/#_arity). USE WITH CAUTION! -If an option is defined as `arity = "*"`, this option will consume _all_ remaining command line arguments following this option (until the <>) as parameters of this option. +If an option is defined as `arity = "*"`, this option will consume _all_ remaining command line arguments following this option (until the [End-of-options delimiter](https://picocli.info/#_double_dash)) as parameters of this option. ### Unsorted Synopsis By default, the synopsis displays options in alphabetical order.