diff options
author | Xavier Noria <fxn@hashref.com> | 2008-05-07 16:00:27 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2008-05-07 16:00:27 +0200 |
commit | 408d5fd5805d0264d8ce5c45be40a984364626f9 (patch) | |
tree | ecef86d04b13b9c71961473bdaa7110724a14123 /actionpack | |
parent | 4bf5f67be9625274faaa4c14a32170d50e987cbe (diff) | |
download | rails-408d5fd5805d0264d8ce5c45be40a984364626f9.tar.gz rails-408d5fd5805d0264d8ce5c45be40a984364626f9.tar.bz2 rails-408d5fd5805d0264d8ce5c45be40a984364626f9.zip |
applied patch in http://rails.lighthouseapp.com/projects/8994/tickets/129-patch-doc-whitespace-fix
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb index d32c6fbe35..8637f91ada 100644 --- a/actionpack/lib/action_view/base.rb +++ b/actionpack/lib/action_view/base.rb @@ -83,7 +83,7 @@ module ActionView #:nodoc: # Here are some basic examples: # # xml.em("emphasized") # => <em>emphasized</em> - # xml.em { xml.b("emph & bold") } # => <em><b>emph & bold</b></em> + # xml.em { xml.b("emph & bold") } # => <em><b>emph & bold</b></em> # xml.a("A Link", "href"=>"http://onestepback.org") # => <a href="http://onestepback.org">A Link</a> # xml.target("name"=>"compile", "option"=>"fast") # => <target option="fast" name="compile"\> # # NOTE: order of attributes is not specified. |