From 4e979574d82f674361f597436f29adc9e6b68033 Mon Sep 17 00:00:00 2001 From: Nikolay Pronchev Date: Sat, 7 Sep 2024 16:06:37 +0000 Subject: [PATCH] Fix README formatting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5848da5..df9320c 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ A command typically represents the core action performed by the script: `run`, ` - Positional arguments are placed after the command, if present. - The presence and number of positional arguments are determined by the script's logic. -- After the special argument --, all arguments are considered positional. This allows passing arguments that start with a dash and might be confused with options. +- After the special argument `--`, all arguments are considered positional. This allows passing arguments that start with a dash and might be confused with options. ### Options Options are script parameters. Each option has at least one alias by which it can be specified in the command line. Options often have both short and long aliases, such as `-h` and `--help`.