From a672a525f821aed061c2aa68ec804e895ac3ebf3 Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Fri, 30 Jul 2010 10:15:32 -0700 Subject: variable name clarity --- lib/arel/algebra/relations/relation.rb | 4 ++-- 1 file 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 -- cgit v1.2.3