diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-11-12 15:18:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-12 15:18:32 -0500 |
commit | ee7556cb08382f311bd40eec0e377aaa878c42e8 (patch) | |
tree | 95578d2ae976f4127e3f8676c772f2c1f51383d7 | |
parent | d2e84fa919156d5faba750e023087f12ac4ff4bb (diff) | |
parent | d5f0bb38f6364f45fd4810faf58cc66ff8ff2d73 (diff) | |
download | rails-ee7556cb08382f311bd40eec0e377aaa878c42e8.tar.gz rails-ee7556cb08382f311bd40eec0e377aaa878c42e8.tar.bz2 rails-ee7556cb08382f311bd40eec0e377aaa878c42e8.zip |
Merge pull request #27019 from djpowers/patch-1
Fix spelling in API documentation
-rw-r--r-- | actionview/lib/action_view/helpers/cache_helper.rb | 2 | ||||
-rw-r--r-- | activerecord/lib/active_record/fixtures.rb | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/actionview/lib/action_view/helpers/cache_helper.rb b/actionview/lib/action_view/helpers/cache_helper.rb index 87d341d862..bf1c8ceaed 100644 --- a/actionview/lib/action_view/helpers/cache_helper.rb +++ b/actionview/lib/action_view/helpers/cache_helper.rb @@ -88,7 +88,7 @@ module ActionView # # === Explicit dependencies # - # Some times you'll have template dependencies that can't be derived at all. This is typically + # Sometimes you'll have template dependencies that can't be derived at all. This is typically # the case when you have template rendering that happens in helpers. Here's an example: # # <%= render_sortable_todolists @project.todolists %> 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: # |