From eb161d3b9fc060dff19f274c477cd98d38bc22a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=20Mu=C3=B1oz?= Date: Wed, 14 Aug 2024 13:24:57 +0200 Subject: [PATCH 1/3] Typo --- libraries/ts-command-line/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/ts-command-line/README.md b/libraries/ts-command-line/README.md index 55d4e6b05e2..a9093f1dae6 100644 --- a/libraries/ts-command-line/README.md +++ b/libraries/ts-command-line/README.md @@ -45,7 +45,7 @@ Several different kinds of parameters are supported: | flag | `--verbose` | `boolean` | Value is `true` if the flag was specified on the command line, `false` otherwise. | | integer | `--max-retry 3` | `int` | The argument is an integer number | | string | `--title "Hello, world"` | `string` | The argument is a text string. | -| choice | `--color red` | `string` | The argument is must be a string from a list of allowed choices (similar to an enum). | +| choice | `--color red` | `string` | The argument must be a string from a list of allowed choices (similar to an enum). | | string list | `-o file1.txt -o file2.txt` | `string[]` | The argument is a text string. The parameter can be specified multiple times to build a list. | Other parameter kinds could be implemented if requested. That said, keeping your CLI grammar simple and systematic makes it easier for users to learn. From 40d8da990e756d0516f68c8ebd3da9da0fe7317d Mon Sep 17 00:00:00 2001 From: Ale M Date: Wed, 14 Aug 2024 13:36:04 +0200 Subject: [PATCH 2/3] Run rush change --- .../ts-command-line/patch-1_2024-08-14-11-35.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 common/changes/@rushstack/ts-command-line/patch-1_2024-08-14-11-35.json diff --git a/common/changes/@rushstack/ts-command-line/patch-1_2024-08-14-11-35.json b/common/changes/@rushstack/ts-command-line/patch-1_2024-08-14-11-35.json new file mode 100644 index 00000000000..9635262f1e0 --- /dev/null +++ b/common/changes/@rushstack/ts-command-line/patch-1_2024-08-14-11-35.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@rushstack/ts-command-line", + "comment": "Typo", + "type": "none" + } + ], + "packageName": "@rushstack/ts-command-line" +} \ No newline at end of file From 5f5169fa22d7be0839f9773b674922d14b3fe923 Mon Sep 17 00:00:00 2001 From: Daniel <3473356+D4N14L@users.noreply.github.com> Date: Wed, 14 Aug 2024 07:05:12 -0700 Subject: [PATCH 3/3] Update patch-1_2024-08-14-11-35.json --- .../@rushstack/ts-command-line/patch-1_2024-08-14-11-35.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/changes/@rushstack/ts-command-line/patch-1_2024-08-14-11-35.json b/common/changes/@rushstack/ts-command-line/patch-1_2024-08-14-11-35.json index 9635262f1e0..a3a0bf92005 100644 --- a/common/changes/@rushstack/ts-command-line/patch-1_2024-08-14-11-35.json +++ b/common/changes/@rushstack/ts-command-line/patch-1_2024-08-14-11-35.json @@ -2,7 +2,7 @@ "changes": [ { "packageName": "@rushstack/ts-command-line", - "comment": "Typo", + "comment": "Fix a README typo.", "type": "none" } ],