aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrent Ogren <tedwardo2@gmail.com>2013-12-11 16:44:24 -0600
committerTrent Ogren <tedwardo2@gmail.com>2013-12-11 19:26:45 -0600
commit96a6703ed9c0e64a01ce729dc8c2c6c19bea7903 (patch)
tree44e3ecc1e7eacc626dbd320d7c2159c131618883
parentd0fc760d093c377e4bd697121af9bc4b047ae04c (diff)
downloadrails-96a6703ed9c0e64a01ce729dc8c2c6c19bea7903.tar.gz
rails-96a6703ed9c0e64a01ce729dc8c2c6c19bea7903.tar.bz2
rails-96a6703ed9c0e64a01ce729dc8c2c6c19bea7903.zip
Update CHANGELOG entry for Session#fetch
This reverts the changes to CHANGELOG.md in commit 38f8872aa5fd8f0a1d0895e9eb41f73261acd040.
-rw-r--r--actionpack/CHANGELOG.md4
1 files changed, 1 insertions, 3 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 3d507392b1..199f8e1ec3 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -85,9 +85,7 @@
* Add `session#fetch` method
- fetch behaves similarly to [Hash#fetch](http://www.ruby-doc.org/core-1.9.3/Hash.html#method-i-fetch),
- with the exception that the returned value is always saved into the session.
-
+ fetch behaves like [Hash#fetch](http://www.ruby-doc.org/core-1.9.3/Hash.html#method-i-fetch).
It returns a value from the hash for the given key.
If the key can’t be found, there are several options: