Merge pull request #373 from davydovanton/doc-fix-typos

Fix all typos
This commit is contained in:
Markus Schirp 2015-07-06 18:41:54 +00:00
commit 3ae0fce484
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)