Fix typo in UnsatisfiedRequirements exception message

Closes Homebrew/homebrew#42125.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
This commit is contained in:
Edgar Gonzalez 2015-07-26 00:48:50 -04:00 committed by Baptiste Fontaine
parent cc91273f8b
commit fbb8efbd66

View File

@ -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