Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
douglara committed Jan 15, 2020
1 parent ace7060 commit 10803d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion activejob/CHANGELOG.md
Expand Up @@ -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
Expand Down
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion railties/CHANGELOG.md
Expand Up @@ -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:

Expand Down

0 comments on commit 10803d6

Please sign in to comment.