fix typos

This commit is contained in:
Douglas Lara 2020-01-15 00:11:40 -03:00
parent ace7060685
commit 10803d6985
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@
before_enqueue { throw(:abort) }
end
MyJob.perform_later # Will no longer log "Enqueud MyJob" since job wasn't even enqueued through adapter.
MyJob.perform_later # Will no longer log "Enqueued MyJob" since job wasn't even enqueued through adapter.
```
A new message will be logged in case a job couldn't be enqueued, either because the callback chain was halted or

View File

@ -83,7 +83,7 @@ class SQLite3TransactionTest < ActiveRecord::SQLite3TestCase
end
end
test "set the read_uncommited PRAGMA to its previous value" do
test "set the read_uncommitted PRAGMA to its previous value" do
with_connection(flags: shared_cache_flags) do |conn|
conn.transaction(joinable: false, isolation: :read_uncommitted) do
conn.instance_variable_get(:@connection).read_uncommitted = true

View File

@ -100,7 +100,7 @@
now able to modify `autoload_paths`, `autoload_once_paths`, and
`eager_load_paths`.
As a consequence, applications cannot autoload within those files. Before, they technnically could, but changes in autoloaded classes or modules had no effect anyway in the configuration because reloading does not reboot.
As a consequence, applications cannot autoload within those files. Before, they technically could, but changes in autoloaded classes or modules had no effect anyway in the configuration because reloading does not reboot.
Ways to use application code in these files: