aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionview/CHANGELOG.md2
-rw-r--r--activerecord/CHANGELOG.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md
index b45d5bf1e0..adbe8ac389 100644
--- a/actionview/CHANGELOG.md
+++ b/actionview/CHANGELOG.md
@@ -1,5 +1,5 @@
* Fix `current_page?` when the URL contains escaped characters and the
- original URL is using the hexdecimal lowercased.
+ original URL is using the hexadecimal lowercased.
*Rafael Mendonça França*
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 70d7988e94..5e7a0c3811 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -34,7 +34,7 @@
* When using optimistic locking, `update` was not passing the column to `quote_value`
to allow the connection adapter to properly determine how to quote the value. This was
- affecting certain databases that use specific colmn types.
+ affecting certain databases that use specific column types.
Fixes: #6763