aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel/collectors/bind.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/arel/collectors/bind.rb')
-rw-r--r--activerecord/lib/arel/collectors/bind.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/arel/collectors/bind.rb b/activerecord/lib/arel/collectors/bind.rb
index d816aed90d..8d19e7446d 100644
--- a/activerecord/lib/arel/collectors/bind.rb
+++ b/activerecord/lib/arel/collectors/bind.rb
@@ -7,11 +7,11 @@ module Arel
@binds = []
end
- def << str
+ def <<(str)
self
end
- def add_bind bind
+ def add_bind(bind)
@binds << bind
self
end