Skip to content

Commit 5a1db86

Browse files
authored
Merge pull request rails#51514 from p8/activerecord/changelog-typos
Fix small typo's in ActiveRecord Changelog [ci-skip]
2 parents 3700aa9 + 79f0c65 commit 5a1db86

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

activerecord/CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131

3232
* Add `ActiveRecord.after_all_transactions_commit` callback.
3333

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

3737
```ruby
3838
def publish_article(article)
@@ -50,7 +50,7 @@
5050
5151
*Jean Boussier*
5252
53-
* Add the ability to ignore counter cache columns until they are backfilled
53+
* Add the ability to ignore counter cache columns until they are backfilled.
5454
5555
Starting to use counter caches on existing large tables can be troublesome, because the column
5656
values must be backfilled separately of the column addition (to not lock the table for too long)
@@ -74,7 +74,7 @@
7474
7575
*fatkodima*
7676
77-
* Retry known idempotent SELECT queries on connection-related exceptions
77+
* Retry known idempotent SELECT queries on connection-related exceptions.
7878
7979
SELECT queries we construct by walking the Arel tree and / or with known model attributes
8080
are idempotent and can safely be retried in the case of a connection error. Previously,

0 commit comments

Comments
 (0)