diff options
| author | Jack Nagel | 2013-06-07 20:36:13 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2013-06-07 20:36:13 -0500 | 
| commit | 70b6c30e0223379ff8954ad7a760e0a1674a8edc (patch) | |
| tree | 2afb0afc52e4a4b3ec6451c2d70d7e2bbbdeaf1d | |
| parent | cb5c4902a1dca034f5f4f6e107a1592e370f61f9 (diff) | |
| download | homebrew-70b6c30e0223379ff8954ad7a760e0a1674a8edc.tar.bz2 | |
Simplify Options#inspect
| -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) | 
