diff options
author | Xavier Noria <fxn@hashref.com> | 2010-03-01 22:17:12 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-03-01 22:17:12 +0100 |
commit | aed8c1f0a471915bc10cf8be3244f4efa69f06b5 (patch) | |
tree | eddb45458ea6b79e528e7447d0ac3a97cefc9e2c | |
parent | 0f847b95ebe2d80bfe67d4f182a4458f2091f322 (diff) | |
download | rails-aed8c1f0a471915bc10cf8be3244f4efa69f06b5.tar.gz rails-aed8c1f0a471915bc10cf8be3244f4efa69f06b5.tar.bz2 rails-aed8c1f0a471915bc10cf8be3244f4efa69f06b5.zip |
AV guide: titleize is defined by Active Support
-rw-r--r-- | railties/guides/source/action_view_overview.textile | 4 |
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) |