aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compat/utils.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/compat/utils.rb')
-rw-r--r--Library/Homebrew/compat/utils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/compat/utils.rb b/Library/Homebrew/compat/utils.rb
index 3842e8a83..f2cca4726 100644
--- a/Library/Homebrew/compat/utils.rb
+++ b/Library/Homebrew/compat/utils.rb
@@ -19,5 +19,5 @@ end
def plural(n, s = "s")
odeprecated "#plural", "Formatter.pluralize"
- n == 1 ? "" : s
+ (n == 1) ? "" : s
end