Fix all typos [skip ci]

This commit is contained in:
Anton Davydov 2015-07-06 21:36:39 +03:00
parent d3fd5563c6
commit e9d5dfa9af
4 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
module Mutant
# Parallel excecution engine of arbitrary payloads
# Parallel execution engine of arbitrary payloads
module Parallel
# Driver for parallelized execution

View file

@ -64,7 +64,7 @@ module Mutant
# Return mutation test config
#
# @return [Parallell::Config]
# @return [Parallel::Config]
#
# @api private
#

View file

@ -32,13 +32,13 @@ RSpec.describe Mutant::Expression do
subject { object.try_parse(input) }
context 'on succesful parse' do
context 'on successful parse' do
let(:input) { 'foo' }
it { should eql(object.new(foo: 'foo')) }
end
context 'on unsuccesful parse' do
context 'on unsuccessful parse' do
let(:input) { 'bar' }
it { should be(nil) }

View file

@ -27,7 +27,7 @@ RSpec.describe Mutant::Parallel::Worker do
let(:actor_names) { [:worker] }
context 'when receving :job command' do
context 'when receiving :job command' do
before do
expect(processor).to receive(:call).with(payload).and_return(result_payload)