diff options
author | Kang-Kyu Lee <kangkyu1111@gmail.com> | 2016-02-01 14:21:34 -0800 |
---|---|---|
committer | Kang-Kyu Lee <kangkyu1111@gmail.com> | 2016-02-01 14:21:34 -0800 |
commit | c4ac23bfa68d07b58e0ff32dfca1fee2b3283542 (patch) | |
tree | 9bf6c5e9f11c4c2f73011ee32ffab1fa022c2815 /actionpack | |
parent | 60b040e362086fa11f86d35938d515145241174e (diff) | |
download | rails-c4ac23bfa68d07b58e0ff32dfca1fee2b3283542.tar.gz rails-c4ac23bfa68d07b58e0ff32dfca1fee2b3283542.tar.bz2 rails-c4ac23bfa68d07b58e0ff32dfca1fee2b3283542.zip |
Update CHANGELOG.md
fix indentation to show it as code
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/CHANGELOG.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index 710751ff1b..809b735deb 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -183,11 +183,11 @@ * Accessing mime types via constants like `Mime::HTML` is deprecated. Please change code like this: - Mime::HTML + Mime::HTML To this: - Mime[:html] + Mime[:html] This change is so that Rails will not manage a list of constants, and fixes an issue where if a type isn't registered you could possibly get the wrong |