diff options
author | Dave Powers <djpowers@users.noreply.github.com> | 2016-11-11 15:34:23 -0500 |
---|---|---|
committer | Dave Powers <djpowers89@gmail.com> | 2016-11-12 15:06:18 -0500 |
commit | d5f0bb38f6364f45fd4810faf58cc66ff8ff2d73 (patch) | |
tree | 6324083977589f6fc25f763f17145e0b69362641 /activerecord/lib/active_record | |
parent | a5e933410dcbf097c5f180ec7ce9b3567a9e3514 (diff) | |
download | rails-d5f0bb38f6364f45fd4810faf58cc66ff8ff2d73.tar.gz rails-d5f0bb38f6364f45fd4810faf58cc66ff8ff2d73.tar.bz2 rails-d5f0bb38f6364f45fd4810faf58cc66ff8ff2d73.zip |
Fix spelling in API docs
[ci skip]
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/fixtures.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb index 0eaee05056..21c5e5b5bb 100644 --- a/activerecord/lib/active_record/fixtures.rb +++ b/activerecord/lib/active_record/fixtures.rb @@ -88,7 +88,7 @@ module ActiveRecord # assert_equal "Ruby on Rails", @rubyonrails.name # end # - # In order to use these methods to access fixtured data within your testcases, you must specify one of the + # In order to use these methods to access fixtured data within your test cases, you must specify one of the # following in your ActiveSupport::TestCase-derived class: # # - to fully enable instantiated fixtures (enable alternate methods #1 and #2 above) @@ -103,7 +103,7 @@ module ActiveRecord # # = Dynamic fixtures with ERB # - # Some times you don't care about the content of the fixtures as much as you care about the volume. + # Sometimes 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: # |