diff options
author | Santosh Wadghule <santosh.wadghule@gmail.com> | 2014-07-14 00:05:00 +0530 |
---|---|---|
committer | Santosh Wadghule <santosh.wadghule@gmail.com> | 2014-07-14 00:14:47 +0530 |
commit | dfee0327b5528caacfe277ccf4d0168b7b96cc05 (patch) | |
tree | 8628518a5baf6dfaa7dd646e235f9b4c14b34754 /actionview | |
parent | ccac6082bd4265f4827cc8bf9748c983d0a1c6c6 (diff) | |
download | rails-dfee0327b5528caacfe277ccf4d0168b7b96cc05.tar.gz rails-dfee0327b5528caacfe277ccf4d0168b7b96cc05.tar.bz2 rails-dfee0327b5528caacfe277ccf4d0168b7b96cc05.zip |
Fix typos like `a html` to `an html` and 'an mail' to 'an email'. [ci skip]
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/lib/action_view/helpers/output_safety_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/output_safety_helper.rb b/actionview/lib/action_view/helpers/output_safety_helper.rb index b0d9c7c7f9..f03362d0f5 100644 --- a/actionview/lib/action_view/helpers/output_safety_helper.rb +++ b/actionview/lib/action_view/helpers/output_safety_helper.rb @@ -17,7 +17,7 @@ module ActionView #:nodoc: stringish.to_s.html_safe end - # This method returns a html safe string similar to what <tt>Array#join</tt> + # This method returns an html safe string similar to what <tt>Array#join</tt> # would return. The array is flattened, and all items, including # the supplied separator, are html escaped unless they are html # safe, and the returned string is marked as html safe. |