From f8b354bf3bf4a611de18833f5db2ff6d0caa9bef Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Sun, 7 Feb 2021 05:41:07 +0900 Subject: [PATCH] Fix typo s/adapaters/adapters/ [ci skip] --- activejob/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md index 76ca8f2e7c..91d4b459d4 100644 --- a/activejob/CHANGELOG.md +++ b/activejob/CHANGELOG.md @@ -3,7 +3,7 @@ `perform_later` can now optionally take a block which will execute after the adapter attempts to enqueue the job. The block will receive the job instance as an argument even if the enqueue was not successful. - Additionally, `ActiveJob` adapaters now have the ability to raise an + Additionally, `ActiveJob` adapters now have the ability to raise an `ActiveJob::EnqueueError` which will be caught and stored in the job instance so code attempting to enqueue jobs can inspect any raised `EnqueueError` using the block.