diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-12-17 12:17:13 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-12-17 12:19:56 +0100 |
commit | 998550396f1911d830a8d52f71972030064a1a9e (patch) | |
tree | fb2268ad6879c7832e0b18ff1233ddba99fed802 | |
parent | aaa5463cc0d81e400ddfb4fdacc0caee319fd587 (diff) | |
download | rails-998550396f1911d830a8d52f71972030064a1a9e.tar.gz rails-998550396f1911d830a8d52f71972030064a1a9e.tar.bz2 rails-998550396f1911d830a8d52f71972030064a1a9e.zip |
release notes link to fixed versions of the API. [ci skip]
As discussed with @fxn the release notes are a snapshot document.
The links going out to the API should represent that exact snapshot.
This means we always link to the full final release. For example
the 3.2 release notes link to http://api.rubyonrails.org/v3.2.0.
-rw-r--r-- | guides/source/3_1_release_notes.md | 2 | ||||
-rw-r--r-- | guides/source/4_1_release_notes.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/3_1_release_notes.md b/guides/source/3_1_release_notes.md index 5c99892e39..485f8c756b 100644 --- a/guides/source/3_1_release_notes.md +++ b/guides/source/3_1_release_notes.md @@ -286,7 +286,7 @@ Action Pack end ``` - You can restrict it to some actions by using `:only` or `:except`. Please read the docs at [`ActionController::Streaming`](http://api.rubyonrails.org/classes/ActionController/Streaming.html) for more information. + You can restrict it to some actions by using `:only` or `:except`. Please read the docs at [`ActionController::Streaming`](http://api.rubyonrails.org/v3.1.0/classes/ActionController/Streaming.html) for more information. * The redirect route method now also accepts a hash of options which will only change the parts of the url in question, or an object which responds to call, allowing for redirects to be reused. diff --git a/guides/source/4_1_release_notes.md b/guides/source/4_1_release_notes.md index 1e36327b78..1a76968139 100644 --- a/guides/source/4_1_release_notes.md +++ b/guides/source/4_1_release_notes.md @@ -131,7 +131,7 @@ Conversation.archived # => Relation for all archived Conversations ``` See -[active_record/enum.rb](https://github.com/rails/rails/blob/4-1-stable/activerecord/lib/active_record/enum.rb#L2-L42) +[active_record/enum.rb](api.rubyonrails.org/v4.1.0/classes/ActiveRecord/Enum.html) for a detailed write up. ### Application message verifier. |