aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2015-03-12 22:38:00 +0900
committeryui-knk <spiketeika@gmail.com>2015-03-12 22:38:00 +0900
commita9aefcfb67e43a0eefab0d47f201187f4ba96552 (patch)
tree2db1a3564769b353bba442611cdbb50aa5164833 /activesupport/lib/active_support/core_ext
parent87b3f163a0653dcb40072156afabb50d81f3235c (diff)
downloadrails-a9aefcfb67e43a0eefab0d47f201187f4ba96552.tar.gz
rails-a9aefcfb67e43a0eefab0d47f201187f4ba96552.tar.bz2
rails-a9aefcfb67e43a0eefab0d47f201187f4ba96552.zip
[ci skip] Add space after erb block.
Diffstat (limited to 'activesupport/lib/active_support/core_ext')
-rw-r--r--activesupport/lib/active_support/core_ext/string/output_safety.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/output_safety.rb b/activesupport/lib/active_support/core_ext/string/output_safety.rb
index bae4e206e6..c676b26b06 100644
--- a/activesupport/lib/active_support/core_ext/string/output_safety.rb
+++ b/activesupport/lib/active_support/core_ext/string/output_safety.rb
@@ -13,7 +13,7 @@ class ERB
# This method is also aliased as <tt>h</tt>.
#
# In your ERB templates, use this method to escape any unsafe content. For example:
- # <%=h @person.name %>
+ # <%= h @person.name %>
#
# puts html_escape('is a > 0 & a < 10?')
# # => is a &gt; 0 &amp; a &lt; 10?