aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/README.rdoc
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2011-04-03 16:59:37 +0900
committerAkira Matsuda <ronnie@dio.jp>2011-04-03 16:59:37 +0900
commit9bf5cddd2835ba4f5d5597f421acf8c9f7385c3b (patch)
treef78ef9658c3070b1e5ab25aa88f4352e6794767f /actionpack/README.rdoc
parentbd3cdeea354ebff97b0d5102a0857ce85eedcfa4 (diff)
downloadrails-9bf5cddd2835ba4f5d5597f421acf8c9f7385c3b.tar.gz
rails-9bf5cddd2835ba4f5d5597f421acf8c9f7385c3b.tar.bz2
rails-9bf5cddd2835ba4f5d5597f421acf8c9f7385c3b.zip
s/ERb/ERB/g (part II)
Diffstat (limited to 'actionpack/README.rdoc')
-rw-r--r--actionpack/README.rdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/README.rdoc b/actionpack/README.rdoc
index 3661d27d51..b900962d32 100644
--- a/actionpack/README.rdoc
+++ b/actionpack/README.rdoc
@@ -19,7 +19,7 @@ It consists of several modules:
* Action View, which handles view template lookup and rendering, and provides
view helpers that assist when building HTML forms, Atom feeds and more.
- Template formats that Action View handles are ERb (embedded Ruby, typically
+ Template formats that Action View handles are ERB (embedded Ruby, typically
used to inline short Ruby snippets inside HTML), XML Builder and RJS
(dynamically generated JavaScript from Ruby code).
@@ -57,7 +57,7 @@ A short rundown of some of the major features:
{Learn more}[link:classes/ActionController/Base.html]
-* ERb templates (static content mixed with dynamic output from ruby)
+* ERB templates (static content mixed with dynamic output from ruby)
<% for post in @posts %>
Title: <%= post.title %>