aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/nodes')
-rw-r--r--lib/arel/nodes/with.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/arel/nodes/with.rb b/lib/arel/nodes/with.rb
index 0745080cc3..7f08abe47d 100644
--- a/lib/arel/nodes/with.rb
+++ b/lib/arel/nodes/with.rb
@@ -1,10 +1,10 @@
module Arel
- module Nodes
- class With < Arel::Nodes::Unary
- alias children expr
- end
+ module Nodes
+ class With < Arel::Nodes::Unary
+ alias children expr
+ end
- class WithRecursive < With; end
- end
+ class WithRecursive < With; end
+ end
end