diff options
| author | Jack Nagel | 2013-06-07 20:36:13 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-06-07 20:36:13 -0500 |
| commit | d596303199a9688b9ef5a21871ded58f77e52feb (patch) | |
| tree | 4f43f148318b841c4a034f952c6426eb90d02801 /Library | |
| parent | a8f5527f7475ad0d6ee11f7e7d01f5da3ec13cc2 (diff) | |
| download | brew-d596303199a9688b9ef5a21871ded58f77e52feb.tar.bz2 | |
Simplify Options#inspect
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/options.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/options.rb b/Library/Homebrew/options.rb index 1545128f5..20c6009f6 100644 --- a/Library/Homebrew/options.rb +++ b/Library/Homebrew/options.rb @@ -106,7 +106,7 @@ class Options alias_method :to_ary, :to_a def inspect - "#<#{self.class}: #{@options.map(&:inspect).join(", ")}>" + "#<#{self.class}: #{to_a.inspect}>" end def self.coerce(arg) |
