aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib
diff options
context:
space:
mode:
authorSantosh Wadghule <santosh.wadghule@gmail.com>2014-07-14 00:05:00 +0530
committerSantosh Wadghule <santosh.wadghule@gmail.com>2014-07-14 00:14:47 +0530
commitdfee0327b5528caacfe277ccf4d0168b7b96cc05 (patch)
tree8628518a5baf6dfaa7dd646e235f9b4c14b34754 /actionview/lib
parentccac6082bd4265f4827cc8bf9748c983d0a1c6c6 (diff)
downloadrails-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/lib')
-rw-r--r--actionview/lib/action_view/helpers/output_safety_helper.rb2
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.