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 /actionpack/lib/action_controller | |
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 'actionpack/lib/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/base.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index e6523e56d2..5f9e082cd3 100644 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -105,7 +105,7 @@ module ActionController # == Renders # # Action Controller sends content to the user by using one of five rendering methods. The most versatile and common is the rendering - # of a template. Included in the Action Pack is the Action View, which enables rendering of ERb templates. It's automatically configured. + # of a template. Included in the Action Pack is the Action View, which enables rendering of ERB templates. It's automatically configured. # The controller passes objects to the view by assigning instance variables: # # def show @@ -128,7 +128,7 @@ module ActionController # end # end # - # Read more about writing ERb and Builder templates in ActionView::Base. + # Read more about writing ERB and Builder templates in ActionView::Base. # # == Redirects # |