aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compat/global.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/compat/global.rb')
-rw-r--r--Library/Homebrew/compat/global.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/compat/global.rb b/Library/Homebrew/compat/global.rb
index 797e9ffe5..82c452cc0 100644
--- a/Library/Homebrew/compat/global.rb
+++ b/Library/Homebrew/compat/global.rb
@@ -3,7 +3,7 @@ module Homebrew
def method_missing(method, *args, &block)
if instance_methods.include?(method)
- # odeprecated "#{self}##{method}", "'module_function' or 'def self.#{method}' to convert it to a class method"
+ odeprecated "#{self}##{method}", "'module_function' or 'def self.#{method}' to convert it to a class method"
return instance_method(method).bind(self).call(*args, &block)
end
super