aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2008-05-07 16:00:27 +0200
committerXavier Noria <fxn@hashref.com>2008-05-07 16:00:27 +0200
commit408d5fd5805d0264d8ce5c45be40a984364626f9 (patch)
treeecef86d04b13b9c71961473bdaa7110724a14123 /actionpack
parent4bf5f67be9625274faaa4c14a32170d50e987cbe (diff)
downloadrails-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.rb2
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 &amp; bold</b></em>
+ # xml.em { xml.b("emph & bold") } # => <em><b>emph &amp; 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.