aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionpack/CHANGELOG.md2
-rw-r--r--activerecord/CHANGELOG.md3
-rw-r--r--activesupport/CHANGELOG.md4
3 files changed, 5 insertions, 4 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 0c3cd4d479..a2cb6fa1fa 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,6 +1,6 @@
## Rails 4.0.0 (unreleased) ##
-* Do not append second slash to root_url when using `trailing_slash: true`
+* Do not append second slash to `root_url` when using `trailing_slash: true`
Fix #8700
Example:
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 756bad5507..5f93aaf522 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -18,7 +18,8 @@
If migrating down, the given migration / block is run normally.
See the [Guide on Migration](https://github.com/rails/rails/blob/master/guides/source/migrations.md#reverting-previous-migrations)
- Attempting to revert the methods `execute`, `remove_columns` and `change_column` will now raise an IrreversibleMigration instead of actually executing them without any output.
+ Attempting to revert the methods `execute`, `remove_columns` and `change_column` will now
+ raise an `IrreversibleMigration` instead of actually executing them without any output.
*Marc-André Lafortune*
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 535b298778..6917be7efc 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -4,7 +4,7 @@
*Akira Matsuda*
-* Introduce assert_not to replace warty 'assert !foo'. *Jeremy Kemper*
+* Introduce `assert_not` to replace warty `assert !foo`. *Jeremy Kemper*
* Prevent `Callbacks#set_callback` from setting the same callback twice.
@@ -15,7 +15,7 @@
*Dmitriy Kiriyenko*
-* Add ActiveSupport::Logger#silence that works the same as the old Logger#silence extension.
+* Add `ActiveSupport::Logger#silence` that works the same as the old `Logger#silence` extension.
*DHH*