aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Campi <andrea.campi@zephirworks.com>2010-10-09 12:11:57 +0200
committerSantiago Pastorino <santiago@wyeworks.com>2010-10-09 12:57:57 -0200
commite695c40e11135e54e40aef97718f88d20a0967c2 (patch)
treed481dc99672d227aa700e150624a5ccd88c14dbb
parentb439c145164237cd8102f39f64e889a4d1df9334 (diff)
downloadrails-e695c40e11135e54e40aef97718f88d20a0967c2.tar.gz
rails-e695c40e11135e54e40aef97718f88d20a0967c2.tar.bz2
rails-e695c40e11135e54e40aef97718f88d20a0967c2.zip
Fix example that became outdated after a code change.
[#5770 state:resolved] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
-rw-r--r--actionpack/lib/action_view/helpers/asset_tag_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb
index c1dfbe5dc3..3ff80579e2 100644
--- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb
@@ -152,7 +152,7 @@ module ActionView
#
# # Normally you'd calculate RELEASE_NUMBER at startup.
# RELEASE_NUMBER = 12345
- # config.action_controller.asset_path_template = proc { |asset_path|
+ # config.action_controller.asset_path = proc { |asset_path|
# "/release-#{RELEASE_NUMBER}#{asset_path}"
# }
#