diff options
author | Marcel Molina <marcel@vernix.org> | 2005-12-13 02:32:05 +0000 |
---|---|---|
committer | Marcel Molina <marcel@vernix.org> | 2005-12-13 02:32:05 +0000 |
commit | 98068a71dfc8970d68ad8d31053faf387aa67c9d (patch) | |
tree | 174f24e5386116740c88a81ee833d93b4506eeac /railties | |
parent | 93b4c0b6e11502d7bd039a6cfc79dcff020255f9 (diff) | |
download | rails-98068a71dfc8970d68ad8d31053faf387aa67c9d.tar.gz rails-98068a71dfc8970d68ad8d31053faf387aa67c9d.tar.bz2 rails-98068a71dfc8970d68ad8d31053faf387aa67c9d.zip |
Fix typo in benchmarker usage string.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3290 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/commands/performance/benchmarker.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/commands/performance/benchmarker.rb b/railties/lib/commands/performance/benchmarker.rb index 47b0940039..e8804fe1bf 100644 --- a/railties/lib/commands/performance/benchmarker.rb +++ b/railties/lib/commands/performance/benchmarker.rb @@ -1,5 +1,5 @@ if ARGV.empty? - puts "Usage: ./script/perform benchmarker [times] 'Person.expensive_way' 'Person.another_expensive_way' ..." + puts "Usage: ./script/performance/benchmarker [times] 'Person.expensive_way' 'Person.another_expensive_way' ..." exit 1 end |