Fix typo in brew doctor completion function name

Wherever in the file the function __fish_brew_suggest_diagnostic_checks
is called, the name has a trailing 's' (plural 'checks'), whereas the
function definition uses 'check' in singular. Changing the function name
to match the callsites.
This commit is contained in:
Marius Kleiner 2021-07-08 12:57:17 +02:00
parent ee2a435a61
commit 423e8e104f

View File

@ -149,7 +149,7 @@ function __fish_brew_suggest_commands -d "Lists all commands names, including al
end end
end end
function __fish_brew_suggest_diagnostic_check -d "List available diagnostic checks" function __fish_brew_suggest_diagnostic_checks -d "List available diagnostic checks"
brew doctor --list-checks brew doctor --list-checks
end end