diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-08-18 17:05:11 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-08-18 17:05:11 -0300 |
commit | abeaf514d0f82fae67f496cde872f5e172b7903a (patch) | |
tree | 3746321e49d08e3ace067a7f70554ade5a29f7d4 | |
parent | 879dde9b1afbe69e31d355f3197183b99b7a7187 (diff) | |
parent | 864469018c4763cb84caf7f15672c7b0ad6383ca (diff) | |
download | rails-abeaf514d0f82fae67f496cde872f5e172b7903a.tar.gz rails-abeaf514d0f82fae67f496cde872f5e172b7903a.tar.bz2 rails-abeaf514d0f82fae67f496cde872f5e172b7903a.zip |
Merge pull request #16546 from aditya-kapoor/remove-broken-link
fix broken link to rails blog [ci skip]
-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 799d5f3bc9..386412e37c 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -597,7 +597,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 |