aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-08-12 20:19:41 -0300
committerGitHub <noreply@github.com>2016-08-12 20:19:41 -0300
commitcd8f5913e8d0c53da227471fe88bb2294f354faf (patch)
tree21e6159a6aa8bc7c2f6fb99e520d967cd64581f7 /activesupport/CHANGELOG.md
parentebcd02aea4c7654f6f0ab478aace0fd098806c89 (diff)
parent8b984161d62d2a5167b3a94e2ffd9873b52ee0f6 (diff)
downloadrails-cd8f5913e8d0c53da227471fe88bb2294f354faf.tar.gz
rails-cd8f5913e8d0c53da227471fe88bb2294f354faf.tar.bz2
rails-cd8f5913e8d0c53da227471fe88bb2294f354faf.zip
Merge pull request #26100 from vipulnsward/changelogs
Pass over changelogs
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 20db6fb048..163fbdbca6 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -40,10 +40,10 @@
*Xavier Noria*
-* Allow MessageEncryptor to take advantage of authenticated encryption modes.
+* Allow `MessageEncryptor` to take advantage of authenticated encryption modes.
AEAD modes like `aes-256-gcm` provide both confidentiality and data
- authenticity, eliminating the need to use MessageVerifier to check if the
+ authenticity, eliminating the need to use `MessageVerifier` to check if the
encrypted data has been tampered with. This speeds up encryption/decryption
and results in shorter cipher text.
@@ -147,7 +147,7 @@
*Sean Griffin*
-* Introduce Module#delegate_missing_to.
+* Introduce `Module#delegate_missing_to`.
When building a decorator, a common pattern emerges: