From fbb8efbd660c1625b5773cf1e8e35637d641ed87 Mon Sep 17 00:00:00 2001 From: Edgar Gonzalez Date: Sun, 26 Jul 2015 00:48:50 -0400 Subject: [PATCH] Fix typo in UnsatisfiedRequirements exception message Closes Homebrew/homebrew#42125. Signed-off-by: Baptiste Fontaine --- Library/Homebrew/exceptions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb index 35dca72acc..6096139527 100644 --- a/Library/Homebrew/exceptions.rb +++ b/Library/Homebrew/exceptions.rb @@ -123,7 +123,7 @@ class UnsatisfiedRequirements < RuntimeError if reqs.length == 1 super "An unsatisfied requirement failed this build." else - super "Unsatisified requirements failed this build." + super "Unsatisfied requirements failed this build." end end end