From 92fa470aaab74d0b12990b616434cecd1e8fc811 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Wed, 29 Jun 2022 22:14:48 +0000 Subject: [PATCH] Copy edit the CHANGELOG Active Record names has space between the words. --- activerecord/CHANGELOG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 2984195d9e5..1aa44da9cbc 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -182,10 +182,10 @@ * Avoid validating a unique field if it has not changed and is backed by a unique index. - Previously, when saving a record, ActiveRecord will perform an extra query to check for the uniqueness of - each attribute having a `uniqueness` validation, even if that attribute hasn't changed. - If the database has the corresponding unique index, then this validation can never fail for persisted records, - and we could safely skip it. + Previously, when saving a record, Active Record will perform an extra query to check for the + uniqueness of each attribute having a `uniqueness` validation, even if that attribute hasn't changed. + If the database has the corresponding unique index, then this validation can never fail for persisted + records, and we could safely skip it. *fatkodima*