aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-03-01 22:17:12 +0100
committerXavier Noria <fxn@hashref.com>2010-03-01 22:17:12 +0100
commitaed8c1f0a471915bc10cf8be3244f4efa69f06b5 (patch)
treeeddb45458ea6b79e528e7447d0ac3a97cefc9e2c /railties
parent0f847b95ebe2d80bfe67d4f182a4458f2091f322 (diff)
downloadrails-aed8c1f0a471915bc10cf8be3244f4efa69f06b5.tar.gz
rails-aed8c1f0a471915bc10cf8be3244f4efa69f06b5.tar.bz2
rails-aed8c1f0a471915bc10cf8be3244f4efa69f06b5.zip
AV guide: titleize is defined by Active Support
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/action_view_overview.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/action_view_overview.textile b/railties/guides/source/action_view_overview.textile
index 4aa43a8f3c..a517193cea 100644
--- a/railties/guides/source/action_view_overview.textile
+++ b/railties/guides/source/action_view_overview.textile
@@ -33,13 +33,13 @@ gem install actionpack
gem install rack
</shell>
-Now we'll create a simple "Hello World" application that uses the +titleize+ method provided by Action View.
+Now we'll create a simple "Hello World" application that uses the +titleize+ method provided by Active Support.
*hello_world.rb:*
<ruby>
require 'rubygems'
-require 'action_view'
+require 'active_support/core_ext/string/inflections'
require 'rack'
def hello_world(env)