aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/examples
diff options
context:
space:
mode:
authortumayun <tumayun.2010@gmail.com>2013-06-27 01:49:54 +0800
committertumayun <tumayun.2010@gmail.com>2013-06-27 01:49:54 +0800
commitf6f373db9b94717f1b5c44f6ae0038829e2f7000 (patch)
treef7dfdeafc7c695b5c171bfda182a437bd847ce53 /activerecord/examples
parent342de058c44f6ba93c1cfeeedfc4768ea5325a3a (diff)
downloadrails-f6f373db9b94717f1b5c44f6ae0038829e2f7000.tar.gz
rails-f6f373db9b94717f1b5c44f6ae0038829e2f7000.tar.bz2
rails-f6f373db9b94717f1b5c44f6ae0038829e2f7000.zip
fix activerecord/examples/performance.rb#L101 syntax error
Diffstat (limited to 'activerecord/examples')
-rw-r--r--activerecord/examples/performance.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/examples/performance.rb b/activerecord/examples/performance.rb
index 1f23b13cac..91697b3c9c 100644
--- a/activerecord/examples/performance.rb
+++ b/activerecord/examples/performance.rb
@@ -98,7 +98,7 @@ Benchmark.ips(TIME) do |x|
exhibit = {
name: ActiveRecord::Faker.name,
notes: notes,
- :created_at: Date.today
+ created_at: Date.today
}
x.report("Model#id") do