aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-12-19 23:08:34 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-12-19 23:09:04 -0200
commit42b555dcf3d3dfc8c4b56e6bf903389f014bf05e (patch)
tree5f8fa00b19013f13de1f80ef818e3ac05201d391 /activesupport/CHANGELOG.md
parent05b80a1cce490b200cefd9d5363d20d55e8eb031 (diff)
downloadrails-42b555dcf3d3dfc8c4b56e6bf903389f014bf05e.tar.gz
rails-42b555dcf3d3dfc8c4b56e6bf903389f014bf05e.tar.bz2
rails-42b555dcf3d3dfc8c4b56e6bf903389f014bf05e.zip
Fix Action Mailer changelog indenation to match other changelogs
Also some minor improvements to other changelogs. [ci skip]
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 5e7121181d..3913b6ee1c 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,8 +1,9 @@
## Rails 4.0.0 (unreleased) ##
-* Remove surrogate unicode character encoding from ActiveSupport::JSON.encode
+
+* Remove surrogate unicode character encoding from `ActiveSupport::JSON.encode`
The encoding scheme was broken for unicode characters outside the basic multilingual plane;
- since json is assumed to be UTF-8, and we already force the encoding to UTF-8 simply pass through
- the un-encoded characters.
+ since json is assumed to be `UTF-8`, and we already force the encoding to `UTF-8`,
+ simply pass through the un-encoded characters.
*Brett Carter*