aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel/nodes/string_join.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/arel/nodes/string_join.rb')
-rw-r--r--activerecord/lib/arel/nodes/string_join.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/lib/arel/nodes/string_join.rb b/activerecord/lib/arel/nodes/string_join.rb
index 21d6845c45..ba3f5f9535 100644
--- a/activerecord/lib/arel/nodes/string_join.rb
+++ b/activerecord/lib/arel/nodes/string_join.rb
@@ -1,8 +1,9 @@
# frozen_string_literal: true
+
module Arel
module Nodes
class StringJoin < Arel::Nodes::Join
- def initialize left, right = nil
+ def initialize(left, right = nil)
super
end
end