diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-12-21 10:51:28 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-12-21 10:51:28 -0800 |
commit | a75ed569346c98c27c9ab1ec9c91332ffd4892b3 (patch) | |
tree | b042c808343247993218e0bf016d75be2624ef42 /lib/arel | |
parent | 3b36a912b940921a3f1e548e59fec74300749ebc (diff) | |
download | rails-a75ed569346c98c27c9ab1ec9c91332ffd4892b3.tar.gz rails-a75ed569346c98c27c9ab1ec9c91332ffd4892b3.tar.bz2 rails-a75ed569346c98c27c9ab1ec9c91332ffd4892b3.zip |
fixing typo, thanks @devwout
Diffstat (limited to 'lib/arel')
-rw-r--r-- | lib/arel/nodes/select_core.rb | 2 |
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 |