Skip to content

Commit

Permalink
Fix small typo's in ActiveRecord Changelog [ci-skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
p8 committed Apr 8, 2024
1 parent 3700aa9 commit 79f0c65
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions activerecord/CHANGELOG.md
Expand Up @@ -31,8 +31,8 @@

* Add `ActiveRecord.after_all_transactions_commit` callback.

Useful for code that may run either inside or outside a transaction and need
to perform works after the state changes have been properly peristed.
Useful for code that may run either inside or outside a transaction and needs
to perform work after the state changes have been properly persisted.

```ruby
def publish_article(article)
Expand All @@ -50,7 +50,7 @@

*Jean Boussier*

* Add the ability to ignore counter cache columns until they are backfilled
* Add the ability to ignore counter cache columns until they are backfilled.

Starting to use counter caches on existing large tables can be troublesome, because the column
values must be backfilled separately of the column addition (to not lock the table for too long)
Expand All @@ -74,7 +74,7 @@

*fatkodima*

* Retry known idempotent SELECT queries on connection-related exceptions
* Retry known idempotent SELECT queries on connection-related exceptions.

SELECT queries we construct by walking the Arel tree and / or with known model attributes
are idempotent and can safely be retried in the case of a connection error. Previously,
Expand Down

0 comments on commit 79f0c65

Please sign in to comment.