diff options
author | Akira Matsuda <ronnie@dio.jp> | 2011-04-03 12:47:51 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2011-04-03 12:47:51 +0900 |
commit | bd3cdeea354ebff97b0d5102a0857ce85eedcfa4 (patch) | |
tree | 1d2b6cee41beef78310ac1df05ef17c567d09a54 /activesupport/lib/active_support | |
parent | c17b8e4047443b416685e30c8825ae01909f8d27 (diff) | |
download | rails-bd3cdeea354ebff97b0d5102a0857ce85eedcfa4.tar.gz rails-bd3cdeea354ebff97b0d5102a0857ce85eedcfa4.tar.bz2 rails-bd3cdeea354ebff97b0d5102a0857ce85eedcfa4.zip |
s/ERb/ERB/g
The author of ERB sais, his eRuby implementation was originally named "ERb/ERbLight" and then renamed to "ERB" when started bundled as a Ruby standard lib.
http://www2a.biglobe.ne.jp/~seki/ruby/erb.html
Diffstat (limited to 'activesupport/lib/active_support')
-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 addd4dab95..c27cbc37c5 100644 --- a/activesupport/lib/active_support/core_ext/string/output_safety.rb +++ b/activesupport/lib/active_support/core_ext/string/output_safety.rb @@ -9,7 +9,7 @@ class ERB # A utility method for escaping HTML tag characters. # This method is also aliased as <tt>h</tt>. # - # In your ERb templates, use this method to escape any unsafe content. For example: + # In your ERB templates, use this method to escape any unsafe content. For example: # <%=h @person.name %> # # ==== Example: |