aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionmailer/CHANGELOG.md2
-rw-r--r--actionpack/CHANGELOG.md4
-rw-r--r--activesupport/CHANGELOG.md16
-rw-r--r--railties/CHANGELOG.md2
4 files changed, 12 insertions, 12 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index e2900c2d10..5685871ac9 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -10,7 +10,7 @@
using the new Active Job framework in Rails, and will use whatever queue is
configured for Rails.
- *DHH/Abdelkader Boudih/Cristian Bica*
+ *DHH*, *Abdelkader Boudih*, *Cristian Bica*
* Make `ActionMailer::Previews` methods class methods. Previously they were
instance methods and `ActionMailer` tries to render a message when they
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 64105934cd..4626c2650a 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,10 +1,10 @@
-* Improve Journey compliance to RFC 3986
+* Improve Journey compliance to RFC 3986.
The scanner in Journey failed to recognize routes that use literals
from the sub-delims section of RFC 3986. It's now able to parse those
authorized delimiters and route as expected.
- Fixes #17212
+ Fixes #17212.
*Nicolas Cavigneaux*
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index 74d57180fe..a935d33686 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -23,8 +23,8 @@
*Joost Lubach*
-* Time#change can now change nanoseconds (:nsec) as a higher-precision
- alternative to microseconds (:usec).
+* `Time#change` can now change nanoseconds (`:nsec`) as a higher-precision
+ alternative to microseconds (`:usec`).
*Agis Anastasooulos*
@@ -39,14 +39,14 @@
*Akira Matsuda*, *Godfrey Chan*
-* Fixed a bug in Inflector#underscore where acroynms in nested constant names
+* Fixed a bug in `Inflector#underscore` where acroynms in nested constant names
are incorrectly parsed as camelCase.
Fixes #8015.
*Fred Wu*, *Matthew Draper*
-* Make Time#change throw an exception if the :usec option is out of range and
+* Make `Time#change` throw an exception if the `:usec` option is out of range and
the time has an offset other than UTC or local.
*Agis Anastasopoulos*
@@ -65,11 +65,11 @@
* Added instance_eval version to Object#try, so you can do this:
- person.try { name.first }
+ person.try { name.first }
instead of:
- person.try { |person| person.name.first }
+ person.try { |person| person.name.first }
*DHH*
@@ -79,12 +79,12 @@
*Robin Dupret*
-* Fix rounding errors with #travel_to by resetting the usec on any passed time to zero, so we only travel
+* Fix rounding errors with `#travel_to` by resetting the usec on any passed time to zero, so we only travel
with per-second precision, not anything deeper than that.
*DHH*
-* Fix DateTime comparison with DateTime::Infinity object.
+* Fix DateTime comparison with `DateTime::Infinity` object.
*Rafael Mendonça França*
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 1e1afef26d..e1a11482e6 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,4 +1,4 @@
-* Remove --skip-action-view option from Rails::Generators::AppBase
+* Remove `--skip-action-view` option from `Rails::Generators::AppBase`.
Fixes #17023.