diff options
author | Rajesh Thummalapally <rajesh.thummalapally@gmail.com> | 2014-01-19 23:34:33 -0500 |
---|---|---|
committer | Rajesh Thummalapally <rajesh.thummalapally@gmail.com> | 2014-01-19 23:47:48 -0500 |
commit | 610a3e8bdbb3ace84867c6db7d72a811f49e2dac (patch) | |
tree | 06abc7b8af9045c47bdf3f44c788ce20befbdde5 /guides/source | |
parent | 18e918870906a1751e2e302eccb70524c103d70e (diff) | |
download | rails-610a3e8bdbb3ace84867c6db7d72a811f49e2dac.tar.gz rails-610a3e8bdbb3ace84867c6db7d72a811f49e2dac.tar.bz2 rails-610a3e8bdbb3ace84867c6db7d72a811f49e2dac.zip |
Correcting link that is pointing to Rails blog [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/upgrading_ruby_on_rails.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index fda4205ed5..76c7f65dda 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -320,7 +320,7 @@ being used, you can update your form to use the `PUT` method instead: <%= form_for [ :update_name, @user ], method: :put do |f| %> ``` -For more on PATCH and why this change was made, see [this post](http://weblog.rubyonrails.org/2012/2/25/edge-rails-patch-is-the-new-primary-http-method-for-updates/) +For more on PATCH and why this change was made, see [this post](http://weblog.rubyonrails.org/2012/2/26/edge-rails-patch-is-the-new-primary-http-method-for-updates/) on the Rails blog. #### A note about media types |