1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix spelling in API docs

[ci skip]
This commit is contained in:
Dave Powers 2016-11-11 15:34:23 -05:00 committed by Dave Powers
parent a5e933410d
commit d5f0bb38f6
2 changed files with 3 additions and 3 deletions

View file

@ -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 %>

View file

@ -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:
#