diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2019-01-30 01:41:01 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-30 01:41:01 +0900 |
commit | 3d22069c6355dc60be65e01958cf32917bc53142 (patch) | |
tree | 0ded93c80fd8f1092210cb36c28a7484322f9985 /activejob/lib | |
parent | 8309cd2c68f548987b8447475c7735a19714baaa (diff) | |
parent | e356200ca1cef3504d0a7b9ef2e18d0b158f6e34 (diff) | |
download | rails-3d22069c6355dc60be65e01958cf32917bc53142.tar.gz rails-3d22069c6355dc60be65e01958cf32917bc53142.tar.bz2 rails-3d22069c6355dc60be65e01958cf32917bc53142.zip |
Merge pull request #35083 from alkesh26/activejob-typo-fixes
Activejob typo fixes.
Diffstat (limited to 'activejob/lib')
-rw-r--r-- | activejob/lib/active_job/enqueuing.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/lib/active_job/enqueuing.rb b/activejob/lib/active_job/enqueuing.rb index ce118c1e8a..5609d13f5f 100644 --- a/activejob/lib/active_job/enqueuing.rb +++ b/activejob/lib/active_job/enqueuing.rb @@ -67,7 +67,7 @@ module ActiveJob false else ActiveSupport::Deprecation.warn( - "Rails 6.0 will return false when the enqueing is aborted. Make sure your code doesn't depend on it" \ + "Rails 6.0 will return false when the enqueuing is aborted. Make sure your code doesn't depend on it" \ " returning the instance of the job and set `config.active_job.return_false_on_aborted_enqueue = true`" \ " to remove the deprecations." ) |