aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/fixtures.rb
diff options
context:
space:
mode:
authorGabe Berke-Williams <gabe@thoughtbot.com>2011-08-31 20:52:35 -0400
committerGabe Berke-Williams <gabe@thoughtbot.com>2011-08-31 20:52:35 -0400
commitde6660b5ec4aa8c0e2415f3483aa9346ef8c9223 (patch)
tree4ff021d568639bb4172890911b6939442f670aff /activerecord/lib/active_record/fixtures.rb
parente851e9e407c38e5026835471b7440ab7f2947490 (diff)
downloadrails-de6660b5ec4aa8c0e2415f3483aa9346ef8c9223.tar.gz
rails-de6660b5ec4aa8c0e2415f3483aa9346ef8c9223.tar.bz2
rails-de6660b5ec4aa8c0e2415f3483aa9346ef8c9223.zip
Improve examples: use each instead of for...in
Diffstat (limited to 'activerecord/lib/active_record/fixtures.rb')
-rw-r--r--activerecord/lib/active_record/fixtures.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb
index 3f36dcde14..2674430116 100644
--- a/activerecord/lib/active_record/fixtures.rb
+++ b/activerecord/lib/active_record/fixtures.rb
@@ -126,7 +126,7 @@ class FixturesFileNotFound < StandardError; end
# Some times you don't care about the content of the fixtures as much as you care about the volume. In these cases, you can
# mix ERB in with your YAML fixtures to create a bunch of fixtures for load testing, like:
#
-# <% for i in 1..1000 %>
+# <% (1..1000).each do |i| %>
# fix_<%= i %>:
# id: <%= i %>
# name: guy_<%= 1 %>