aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/select_core.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-12-21 10:51:28 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-12-21 10:51:28 -0800
commita75ed569346c98c27c9ab1ec9c91332ffd4892b3 (patch)
treeb042c808343247993218e0bf016d75be2624ef42 /lib/arel/nodes/select_core.rb
parent3b36a912b940921a3f1e548e59fec74300749ebc (diff)
downloadrails-a75ed569346c98c27c9ab1ec9c91332ffd4892b3.tar.gz
rails-a75ed569346c98c27c9ab1ec9c91332ffd4892b3.tar.bz2
rails-a75ed569346c98c27c9ab1ec9c91332ffd4892b3.zip
fixing typo, thanks @devwout
Diffstat (limited to 'lib/arel/nodes/select_core.rb')
-rw-r--r--lib/arel/nodes/select_core.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arel/nodes/select_core.rb b/lib/arel/nodes/select_core.rb
index bd1930364d..8eb7c0d3e7 100644
--- a/lib/arel/nodes/select_core.rb
+++ b/lib/arel/nodes/select_core.rb
@@ -28,7 +28,7 @@ module Arel
@source = @source.clone if @source
@projections = @projections.clone
@wheres = @wheres.clone
- @group = @groups.clone
+ @groups = @groups.clone
@having = @having.clone if @having
end
end