diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-10-15 01:10:12 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-10-15 01:10:12 +0000 |
commit | 6027d376b9e68a41f9b3da5abd21087fd965c421 (patch) | |
tree | 5c1a0408c6dc0c0698a8ae966044b916e2f79f49 /railties | |
parent | 04f4ae255f5f9d0b6ed1f131473f56806a1430ef (diff) | |
download | rails-6027d376b9e68a41f9b3da5abd21087fd965c421.tar.gz rails-6027d376b9e68a41f9b3da5abd21087fd965c421.tar.bz2 rails-6027d376b9e68a41f9b3da5abd21087fd965c421.zip |
Cleaned up some docs
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2598 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-rw-r--r-- | railties/helpers/application.rb | 4 | ||||
-rw-r--r-- | railties/helpers/application_helper.rb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/railties/helpers/application.rb b/railties/helpers/application.rb index 87ca44126d..537de40d7e 100644 --- a/railties/helpers/application.rb +++ b/railties/helpers/application.rb @@ -1,4 +1,4 @@ -# The filters added to this controller will be run for all controllers in the application. -# Likewise will all the methods added be available for all controllers. +# Filters added to this controller will be run for all controllers in the application. +# Likewise, all the methods added will be available for all controllers. class ApplicationController < ActionController::Base end
\ No newline at end of file diff --git a/railties/helpers/application_helper.rb b/railties/helpers/application_helper.rb index 0392b53b46..22a7940eb2 100644 --- a/railties/helpers/application_helper.rb +++ b/railties/helpers/application_helper.rb @@ -1,3 +1,3 @@ -# The methods added to this helper will be available to all templates in the application. +# Methods added to this helper will be available to all templates in the application. module ApplicationHelper end |