aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-08-10 09:32:22 +0530
committerVipul A M <vipulnsward@gmail.com>2016-08-10 09:33:13 +0530
commit8b984161d62d2a5167b3a94e2ffd9873b52ee0f6 (patch)
tree5d1a8071975ee0d9062139b59911fad38a0da1e3 /activesupport
parent92e20f398e3dbe8130f8d764701a195c14653e66 (diff)
downloadrails-8b984161d62d2a5167b3a94e2ffd9873b52ee0f6.tar.gz
rails-8b984161d62d2a5167b3a94e2ffd9873b52ee0f6.tar.bz2
rails-8b984161d62d2a5167b3a94e2ffd9873b52ee0f6.zip
Pass over changelogs [ci skip]
Diffstat (limited to 'activesupport')
-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: