Skip to content

Commit

Permalink
Merge pull request #38238 from douglara/fix-typos
Browse files Browse the repository at this point in the history
fix typos
  • Loading branch information
schneems committed Jan 15, 2020
2 parents ace7060 + 10803d6 commit bdc7ebc
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 bdc7ebc

Please sign in to comment.