From b5c40478f618fc90a3a83c6e5bdf9f3fc83989fd Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sat, 11 Apr 2026 18:28:23 +0800 Subject: [PATCH] Fix typo, closes #12586, closes #12577 --- doc_src/cmds/argparse.rst | 2 +- share/tools/web_config/fishconfig.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc_src/cmds/argparse.rst b/doc_src/cmds/argparse.rst index a1f5ad69a..08ec42377 100644 --- a/doc_src/cmds/argparse.rst +++ b/doc_src/cmds/argparse.rst @@ -251,7 +251,7 @@ Some *OPTION_SPEC* examples: - ``n/name=?`` means that both ``-n`` and ``--name`` are valid. It accepts an optional value and can be used at most once. If the flag is seen then ``_flag_n`` and ``_flag_name`` will be set with the value associated with the flag if one was provided else it will be set with no values. -- ``n/name=*`` is similar, but the flag can be used more than once. If the flag is seen then ``_flag_n`` and ``_flag_name`` will be set with the values associated with each occurence. Each value will be the value given to the option, or the empty string if no value was given. +- ``n/name=*`` is similar, but the flag can be used more than once. If the flag is seen then ``_flag_n`` and ``_flag_name`` will be set with the values associated with each occurrence. Each value will be the value given to the option, or the empty string if no value was given. - ``name=+`` means that only ``--name`` is valid. It requires a value and can be used more than once. If the flag is seen then ``_flag_name`` will be set with the values associated with each occurrence. diff --git a/share/tools/web_config/fishconfig.css b/share/tools/web_config/fishconfig.css index f7b53ed57..c846897eb 100644 --- a/share/tools/web_config/fishconfig.css +++ b/share/tools/web_config/fishconfig.css @@ -207,7 +207,7 @@ tt { border-top-left-radius: 5; border-bottom-left-radius: 5; - /* Pad one less than .master_element, to accomodate our border. */ + /* Pad one less than .master_element, to accommodate our border. */ padding-top: 5px; padding-bottom: 10px; padding-left: 4px;