aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-11-26 19:14:39 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-11-26 19:14:39 +0530
commit1d8954068655580548e8e1cb283a8499988afb1d (patch)
tree2694ef0ad4ecf0297f6f72d4af84c90acb0494f9 /actionpack/lib/action_dispatch/routing
parentb6916e0b925d4c8b4487d574fe07b11440f2ec5e (diff)
parent5c2a2ee76e2af591a997b71eec0e35143c07f9e1 (diff)
downloadrails-1d8954068655580548e8e1cb283a8499988afb1d.tar.gz
rails-1d8954068655580548e8e1cb283a8499988afb1d.tar.bz2
rails-1d8954068655580548e8e1cb283a8499988afb1d.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'actionpack/lib/action_dispatch/routing')
-rw-r--r--actionpack/lib/action_dispatch/routing/url_for.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/routing/url_for.rb b/actionpack/lib/action_dispatch/routing/url_for.rb
index 8fc8dc191b..39ba83fb9a 100644
--- a/actionpack/lib/action_dispatch/routing/url_for.rb
+++ b/actionpack/lib/action_dispatch/routing/url_for.rb
@@ -42,7 +42,7 @@ module ActionDispatch
# url_for(:controller => 'users',
# :action => 'new',
# :message => 'Welcome!',
- # :host => 'www.example.com') # Changed this.
+ # :host => 'www.example.com')
# # => "http://www.example.com/users/new?message=Welcome%21"
#
# By default, all controllers and views have access to a special version of url_for,
@@ -52,7 +52,7 @@ module ActionDispatch
#
# For convenience reasons, mailers provide a shortcut for ActionController::UrlFor#url_for.
# So within mailers, you only have to type 'url_for' instead of 'ActionController::UrlFor#url_for'
- # in full. However, mailers don't have hostname information, and what's why you'll still
+ # in full. However, mailers don't have hostname information, and that's why you'll still
# have to specify the <tt>:host</tt> argument when generating URLs in mailers.
#
#