aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-09-06 17:18:10 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-09-06 17:18:10 -0700
commit458f9c43603df319625f1db0939635af13a85d43 (patch)
treee2c10a1b03374b257400ccbd0bad2b125f5622dd /lib
parente4f6272b844f7e6a9ee13c67fdb80897377d2f44 (diff)
downloadrails-458f9c43603df319625f1db0939635af13a85d43.tar.gz
rails-458f9c43603df319625f1db0939635af13a85d43.tar.bz2
rails-458f9c43603df319625f1db0939635af13a85d43.zip
fixing warning
Diffstat (limited to 'lib')
-rw-r--r--lib/arel/table.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arel/table.rb b/lib/arel/table.rb
index f115caaab3..faf4d70f64 100644
--- a/lib/arel/table.rb
+++ b/lib/arel/table.rb
@@ -38,7 +38,7 @@ module Arel
end
def order *expr
- tm.order *expr
+ tm.order(*expr)
end
def where condition