diff options
author | Zachary Scott <e@zzak.io> | 2014-07-13 11:48:38 -0700 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-07-13 11:48:38 -0700 |
commit | 9ce01dbfd133cb65f565b39764ab11a3b5287bbd (patch) | |
tree | 8628518a5baf6dfaa7dd646e235f9b4c14b34754 /actionview | |
parent | ccac6082bd4265f4827cc8bf9748c983d0a1c6c6 (diff) | |
parent | dfee0327b5528caacfe277ccf4d0168b7b96cc05 (diff) | |
download | rails-9ce01dbfd133cb65f565b39764ab11a3b5287bbd.tar.gz rails-9ce01dbfd133cb65f565b39764ab11a3b5287bbd.tar.bz2 rails-9ce01dbfd133cb65f565b39764ab11a3b5287bbd.zip |
Merge pull request #16155 from mechanicles/fix-typos
[ci skip] Fix typos like `a html` to `an html` and 'an mail' to 'an email'.
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. |