aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdgar Gonzalez2015-07-26 00:48:50 -0400
committerBaptiste Fontaine2015-07-26 09:19:22 +0200
commitfbb8efbd660c1625b5773cf1e8e35637d641ed87 (patch)
tree64f5ba2d40b7eecaa098033fc2523e0604f234cb
parentcc91273f8bceea64f086677f76aeeca31c7548c7 (diff)
downloadbrew-fbb8efbd660c1625b5773cf1e8e35637d641ed87.tar.bz2
Fix typo in UnsatisfiedRequirements exception message
Closes Homebrew/homebrew#42125. Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
-rw-r--r--Library/Homebrew/exceptions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb
index 35dca72ac..609613952 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