diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md index 519343e803..2b2ea21131 100644 --- a/activejob/CHANGELOG.md +++ b/activejob/CHANGELOG.md @@ -73,7 +73,7 @@ ``` A new message will be logged in case a job couldn't be enqueued, either because the callback chain was halted or - because an exception happened during enqueing. (i.e. Redis is down when you try to enqueue your job) + because an exception happened during enqueuing. (i.e. Redis is down when you try to enqueue your job) *Edouard Chin* diff --git a/activerecord/lib/active_record/railtie.rb b/activerecord/lib/active_record/railtie.rb index 24e6aa5eb9..40874787fa 100644 --- a/activerecord/lib/active_record/railtie.rb +++ b/activerecord/lib/active_record/railtie.rb @@ -179,7 +179,7 @@ To keep using the current cache store, you can turn off cache versioning entirel end end rescue ActiveRecordError => error - # Regardless of wether there was already a connection or not, we rescue any database + # Regardless of whether there was already a connection or not, we rescue any database # error because it is critical that the application can boot even if the database # is unhealthy. warn "Failed to define attribute methods because of #{error.class}: #{error.message}"