diff options
author | Mac Martine <mac.martine@gmail.com> | 2013-11-19 15:43:20 -0800 |
---|---|---|
committer | Mac Martine <mac.martine@gmail.com> | 2013-11-19 15:46:00 -0800 |
commit | 6251eb992fce30029479832f63d1281cd9fa7f3c (patch) | |
tree | 4dadac04a57de9447ae08c34f646410a0ad018b7 /actionview | |
parent | a7afceec3e491bbf505c690b3019445593c04f68 (diff) | |
download | rails-6251eb992fce30029479832f63d1281cd9fa7f3c.tar.gz rails-6251eb992fce30029479832f63d1281cd9fa7f3c.tar.bz2 rails-6251eb992fce30029479832f63d1281cd9fa7f3c.zip |
Improve readability of sentence in partial-renderer docs [ci skip]
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/lib/action_view/renderer/partial_renderer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/renderer/partial_renderer.rb b/actionview/lib/action_view/renderer/partial_renderer.rb index 821026268a..36f17f01fd 100644 --- a/actionview/lib/action_view/renderer/partial_renderer.rb +++ b/actionview/lib/action_view/renderer/partial_renderer.rb @@ -159,7 +159,7 @@ module ActionView # </div> # # If a collection is given, the layout will be rendered once for each item in - # the collection. Just think these two snippets have the same output: + # the collection. For example, these two snippets have the same output: # # <%# app/views/users/_user.html.erb %> # Name: <%= user.name %> |