From ebaf66d94e5cecaafb3fe75f5d715517e93c3b75 Mon Sep 17 00:00:00 2001 From: rafmartom Date: Wed, 26 Feb 2025 13:04:03 +0000 Subject: [PATCH] Fixed typo in README @option instead of @arg --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5b9bc48..e701746 100644 --- a/README.md +++ b/README.md @@ -225,8 +225,8 @@ If an option argument is expected, it must be specified between `<` and `>` ```bash # @description Says hi to a given person. # @option -h A short option. -# @arg --value= A long option with argument. -# @arg -v | --value A long option with short option alternative. +# @option --value= A long option with argument. +# @option -v | --value A long option with short option alternative. say-hello() { ... }