aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-06-26 11:12:09 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-06-26 11:12:09 -0700
commit9dfa926874cf1c3f851fd884761f76957867d2bd (patch)
treef2f7f2cba1e6b4255150b20187d8aa0d7a3220f3
parent317aaa05883c92165cfb8204634b9fd9b976a97b (diff)
parentf6f373db9b94717f1b5c44f6ae0038829e2f7000 (diff)
downloadrails-9dfa926874cf1c3f851fd884761f76957867d2bd.tar.gz
rails-9dfa926874cf1c3f851fd884761f76957867d2bd.tar.bz2
rails-9dfa926874cf1c3f851fd884761f76957867d2bd.zip
Merge pull request #11126 from tumayun/fix_activerecord_examples_performance_rb_syntax_error
fix activerecord/examples/performance.rb#L101 syntax error
-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