From 53331b478d32e42a8155414379b2edbe4277a3a4 Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Mon, 9 Nov 2020 15:23:39 +0900 Subject: [PATCH] Fix typos [ci skip] --- activejob/CHANGELOG.md | 2 +- activerecord/lib/active_record/railtie.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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}"