diff options
Diffstat (limited to 'lib/arel')
-rw-r--r-- | lib/arel/algebra/relations/relation.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/arel/algebra/relations/relation.rb b/lib/arel/algebra/relations/relation.rb index 0441b14382..9ff436ecb7 100644 --- a/lib/arel/algebra/relations/relation.rb +++ b/lib/arel/algebra/relations/relation.rb @@ -143,8 +143,8 @@ module Arel thing ? Skip.new(self, thing) : self end - def take thing - Take.new self, thing + def take count + Take.new self, count end def from thing |