diff options
author | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-05-18 19:11:50 -0500 |
---|---|---|
committer | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-05-18 19:11:50 -0500 |
commit | ec430d478a989aef7ad27a1f7251c4c378a08b25 (patch) | |
tree | cd1d0a9fa601c3e62f54a07ad813bfd2840fcfa2 /actionpack/lib/action_view | |
parent | 23a98ffbd9b39ee70094ded1671cf1879d0d3591 (diff) | |
download | rails-ec430d478a989aef7ad27a1f7251c4c378a08b25.tar.gz rails-ec430d478a989aef7ad27a1f7251c4c378a08b25.tar.bz2 rails-ec430d478a989aef7ad27a1f7251c4c378a08b25.zip |
minor fix wrapper tag documentation
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r-- | actionpack/lib/action_view/helpers/text_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/text_helper.rb b/actionpack/lib/action_view/helpers/text_helper.rb index 6d542c819f..33db4b05bf 100644 --- a/actionpack/lib/action_view/helpers/text_helper.rb +++ b/actionpack/lib/action_view/helpers/text_helper.rb @@ -243,7 +243,7 @@ module ActionView # simple_format(my_text) # # => "<p>Here is some basic text...\n<br />...with a line break.</p>" # - # simple_format(my_text, , {} :wrapper_tag => "div") + # simple_format(my_text, {}, :wrapper_tag => "div") # # => "<div>Here is some basic text...\n<br />...with a line break.</div>" # # more_text = "We want to put a paragraph...\n\n...right there." |