diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/arel/nodes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arel/nodes.rb b/lib/arel/nodes.rb index e8de637323..7d900fe710 100644 --- a/lib/arel/nodes.rb +++ b/lib/arel/nodes.rb @@ -77,7 +77,7 @@ module Arel class Quoted < Arel::Nodes::Unary # :nodoc: alias :val :value - def nil; val.nil?; end + def nil?; val.nil?; end end def self.build_quoted other, attribute = nil |