From 423e8e104fda8805fe79fc2cad042b9192f5fa3e Mon Sep 17 00:00:00 2001 From: Marius Kleiner Date: Thu, 8 Jul 2021 12:57:17 +0200 Subject: [PATCH] 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. --- completions/fish/brew.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completions/fish/brew.fish b/completions/fish/brew.fish index e033ba1806..49a3996a98 100644 --- a/completions/fish/brew.fish +++ b/completions/fish/brew.fish @@ -149,7 +149,7 @@ function __fish_brew_suggest_commands -d "Lists all commands names, including al 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 end