diff options
author | yui-knk <spiketeika@gmail.com> | 2015-03-12 22:38:00 +0900 |
---|---|---|
committer | yui-knk <spiketeika@gmail.com> | 2015-03-12 22:38:00 +0900 |
commit | a9aefcfb67e43a0eefab0d47f201187f4ba96552 (patch) | |
tree | 2db1a3564769b353bba442611cdbb50aa5164833 /activesupport/lib | |
parent | 87b3f163a0653dcb40072156afabb50d81f3235c (diff) | |
download | rails-a9aefcfb67e43a0eefab0d47f201187f4ba96552.tar.gz rails-a9aefcfb67e43a0eefab0d47f201187f4ba96552.tar.bz2 rails-a9aefcfb67e43a0eefab0d47f201187f4ba96552.zip |
[ci skip] Add space after erb block.
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/output_safety.rb | 2 |
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 > 0 & a < 10? |