mirror of https://github.com/rails/rails
fix typos
This commit is contained in:
parent
ace7060685
commit
10803d6985
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
||||
|
|
Loading…
Reference in New Issue