From ad32d387e9cd0f8abd18459c8c8a48bc87743745 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 4 Mar 2020 19:26:09 +0000 Subject: [PATCH] exceptions: fix case for UsageError subclasses. --- Library/Homebrew/exceptions.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb index 47ea8c56e3..6172f4fa9d 100644 --- a/Library/Homebrew/exceptions.rb +++ b/Library/Homebrew/exceptions.rb @@ -19,13 +19,13 @@ end class FormulaUnspecifiedError < UsageError def initialize - super "This command requires a formula argument" + super "this command requires a formula argument" end end class KegUnspecifiedError < UsageError def initialize - super "This command requires a keg argument" + super "this command requires a keg argument" end end