Fix typos in docs

This commit is contained in:
Johannes Altmanninger 2020-09-24 21:49:16 +02:00
parent 0d0ee473fa
commit 16ae532368

View File

@ -1196,7 +1196,7 @@ A more robust approach to argument handling is :ref:`argparse <cmd-argparse>`, w
# If -h or --help is given, we print a little help text and return
if set -q _flag_help
echo "mybetterfunction [-h|-help] [-s-|-second] [ARGUMENTS...]"
echo "mybetterfunction [-h|--help] [-s|--second] [ARGUMENTS...]"
return 0
end