aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/table_alias.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/nodes/table_alias.rb')
-rw-r--r--lib/arel/nodes/table_alias.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arel/nodes/table_alias.rb b/lib/arel/nodes/table_alias.rb
index 723b025883..4f4d5e29e9 100644
--- a/lib/arel/nodes/table_alias.rb
+++ b/lib/arel/nodes/table_alias.rb
@@ -6,7 +6,7 @@ module Arel
alias :table_alias :name
def [] name
- Attribute.new self, name
+ Attribute.new(self, name)
end
end
end