From a4e226fb2d4ae533b6ac668c38b6923b5eb5db0a Mon Sep 17 00:00:00 2001 From: Dharam Gollapudi Date: Sat, 17 Feb 2018 16:01:20 -0800 Subject: Fixes typos Fixes typos --- activesupport/lib/active_support/test_case.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'activesupport') diff --git a/activesupport/lib/active_support/test_case.rb b/activesupport/lib/active_support/test_case.rb index 3588a5ac02..a698b4e61e 100644 --- a/activesupport/lib/active_support/test_case.rb +++ b/activesupport/lib/active_support/test_case.rb @@ -65,8 +65,8 @@ module ActiveSupport # # parallelize(workers: 2, with: :threads) # - # The threaded parallelization uses Minitest's parallel exector directly. - # The processes paralleliztion uses a Ruby Drb server. + # The threaded parallelization uses Minitest's parallel executor directly. + # The processes parallelization uses a Ruby Drb server. def parallelize(workers: 2, with: :processes) workers = ENV["PARALLEL_WORKERS"].to_i if ENV["PARALLEL_WORKERS"] @@ -78,7 +78,7 @@ module ActiveSupport when :threads Minitest::Parallel::Executor.new(workers) else - raise ArgumentError, "#{with} is not a supported parallelization exectutor." + raise ArgumentError, "#{with} is not a supported parallelization executor." end self.lock_threads = false if defined?(self.lock_threads) && with == :threads -- cgit v1.2.3