diff options
author | Evan Travers <evantravers@gmail.com> | 2012-07-12 11:21:09 -0500 |
---|---|---|
committer | Evan Travers <evantravers@gmail.com> | 2012-07-12 11:21:09 -0500 |
commit | 201156b6a9f090c21953e2c69a41f28c33545a1f (patch) | |
tree | 73e647c412469d54e30f79902363b345e2b814da /actionpack/lib/action_view | |
parent | 2075adabad817662640b9851b2ab7dd75d42ab79 (diff) | |
download | rails-201156b6a9f090c21953e2c69a41f28c33545a1f.tar.gz rails-201156b6a9f090c21953e2c69a41f28c33545a1f.tar.bz2 rails-201156b6a9f090c21953e2c69a41f28c33545a1f.zip |
add second t to overwritten
fixing a misspelling in the documentation
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r-- | actionpack/lib/action_view/context.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/context.rb b/actionpack/lib/action_view/context.rb index 245849d706..ee263df484 100644 --- a/actionpack/lib/action_view/context.rb +++ b/actionpack/lib/action_view/context.rb @@ -26,11 +26,11 @@ module ActionView # Encapsulates the interaction with the view flow so it # returns the correct buffer on +yield+. This is usually - # overwriten by helpers to add more behavior. + # overwritten by helpers to add more behavior. # :api: plugin def _layout_for(name=nil) name ||= :layout view_flow.get(name).html_safe end end -end
\ No newline at end of file +end |