Fix miscellaneous typos

Mostly in comments and documentation, but one method name was corrected to match documentation.
This commit is contained in:
Tim Chambers 2014-08-07 09:00:31 -07:00
parent 229a255ff3
commit fe72c94b94
25 changed files with 33 additions and 33 deletions

View file

@ -71,7 +71,7 @@ Changes:
* Report selected tests in progress runner
* Fix scope of rspec selections to include meaningful parents.
* Add short circuts on already dead mutations under multiple test selections.
* Add short circuits on already dead mutations under multiple test selections.
# v0.5.16 2014-05-27
@ -98,7 +98,7 @@ Changes:
Changes:
* Imporve reporting of isolation problems
* Improve reporting of isolation problems
* Centralize test selection
* Report selected tests
* Report rspec output on noop failures
@ -117,7 +117,7 @@ Changes:
* Fix crash on while and until without body
* Better require highjack based zombifier
* Do not mutate nthref $1 to gvar $0
* Use faster duplicate guarding hashing AST::Node intances
* Use faster duplicate guarding hashing AST::Node instances
* Fix lots of shadowed invalid ASTs
* Fix undefine initialize warnings, Closes #175

View file

@ -142,7 +142,7 @@ current prefix level, these example groups *must* kill the mutation.
Support
-------
I'm very happy to receive/answer feedback/questions and critism.
I'm very happy to receive/answer feedback/questions and criticism.
Your options:

View file

@ -194,7 +194,7 @@ require 'mutant/zombifier'
require 'mutant/zombifier/file'
module Mutant
# Repoen class to initialize constant to avoid dep circle
# Reopen class to initialize constant to avoid dep circle
class Config
DEFAULT = new(
debug: false,

View file

@ -2,11 +2,11 @@ require 'optparse'
module Mutant
# Comandline parser
# Commandline parser
class CLI
include Adamantium::Flat, Equalizer.new(:config), Procto.call(:config)
# Error faild when CLI argv is invalid
# Error failed when CLI argv is invalid
Error = Class.new(RuntimeError)
EXIT_FAILURE = 1

View file

@ -1,5 +1,5 @@
module Mutant
# An abstract context where mutations can be appied to.
# An abstract context where mutations can be applied to.
class Context
include Adamantium::Flat, AbstractType, Concord::Public.new(:source_path)

View file

@ -22,8 +22,8 @@ module Mutant
# Error raised on invalid expressions
class InvalidExpressionError < RuntimeError; end
# Error raised on ambigous expressions
class AmbigousExpressionError < RuntimeError; end
# Error raised on ambiguous expressions
class AmbiguousExpressionError < RuntimeError; end
# Initialize expression
#
@ -127,7 +127,7 @@ module Mutant
when 1
expressions.first
else
fail AmbigousExpressionError, "Ambigous expression: #{input.inspect}"
fail AmbiguousExpressionError, "Ambiguous expression: #{input.inspect}"
end
end

View file

@ -1,5 +1,5 @@
module Mutant
# Module providing isolationg
# Module providing isolation
module Isolation
Error = Class.new(RuntimeError)

View file

@ -23,7 +23,7 @@ module Mutant
# @return [self]
# if block given
#
# @return [Enumerabe<Subject>]
# @return [Enumerable<Subject>]
# otherwise
#
abstract_method :each

View file

@ -80,7 +80,7 @@ module Mutant
end
end
# Test if reciver name matches context
# Test if receiver name matches context
#
# @param [Parser::AST::Node] node
#

View file

@ -78,7 +78,7 @@ module Mutant
self
end
# Add singleotn mutations
# Add singleton mutations
#
# @return [undefined]
#

View file

@ -69,7 +69,7 @@ module Mutant
dispatch
end
# Test if generated object is not guarded from emmitting
# Test if generated object is not guarded from emitting
#
# @param [Object] object
#

View file

@ -190,7 +190,7 @@ module Mutant
# Return parent type
#
# @return [Symbol] type
# if parent with type is presnet
# if parent with type is present
#
# @return [nil]
# otherwise

View file

@ -23,7 +23,7 @@ module Mutant
mutate_else_branch
end
# Emit conditon mutations
# Emit condition mutations
#
# @return [undefined]
#

View file

@ -40,7 +40,7 @@ module Mutant
children.first
end
end # Fixnuma
end # Fixnum
end # Literal
end # Node
end # Mutator

View file

@ -74,7 +74,7 @@ module Mutant
#
# @return [undefined]
#
# @raise [DuplcateTypeError]
# @raise [DuplicateTypeError]
# raised when the node type is a duplicate
#
# @api private

View file

@ -3,7 +3,7 @@ module Mutant
# Namespace for utility mutators
class Util < self
# Run ulitity mutator
# Run utility mutator
#
# @param [Object] object
# @param [Object] parent

View file

@ -90,7 +90,7 @@ module Mutant
# Hook called when module gets included
#
# @param [Class, Module] hosto
# @param [Class, Module] host
#
# @return [undefined]
#
@ -262,7 +262,7 @@ module Mutant
class Mutation
include Result, Anima.new(:runtime, :mutation, :test_results, :index)
# Test if mutation was handeled successfully
# Test if mutation was handled successfully
#
# @return [Boolean]
#

View file

@ -1,6 +1,6 @@
module Mutant
class Zombifier
# File containing source beeing zombified
# File containing source being zombified
class File
include Adamantium::Flat, Concord::Public.new(:path), AST::Sexp

View file

@ -23,7 +23,7 @@ module Corpus
# Verify mutation coverage
#
# @return [self]
# if successufl
# if successful
#
# @raise [Exception]
#

View file

@ -28,7 +28,7 @@ class MutationVerifier
private
# Return unexpected mutationso
# Return unexpected mutations
#
# @return [Array<Parser::AST::Node>]
#
@ -71,7 +71,7 @@ private
].join("\n")
end
# Return missing mutationso
# Return missing mutations
#
# @return [Array<Parser::AST::Node>]
#

View file

@ -38,7 +38,7 @@ describe Mutant::CLI do
end
end
context 'when report signalls error' do
context 'when report signals error' do
let(:report_success) { false }
it 'exits failure' do

View file

@ -30,7 +30,7 @@ describe Mutant::Expression do
let(:input) { 'test-syntax' }
it 'raises an exception' do
expect { subject }.to raise_error(Mutant::Expression::AmbigousExpressionError, 'Ambigous expression: "test-syntax"')
expect { subject }.to raise_error(Mutant::Expression::AmbiguousExpressionError, 'Ambiguous expression: "test-syntax"')
end
end
end

View file

@ -68,7 +68,7 @@ describe Mutant::Matcher::Method::Instance do
end
context 'when method is defined multiple times' do
context 'on differend lines' do
context 'on different lines' do
let(:base) { __LINE__ }
class self::Foo
def bar
@ -96,7 +96,7 @@ describe Mutant::Matcher::Method::Instance do
it_should_behave_like 'a method matcher'
end
context 'on the same line with differend scope' do
context 'on the same line with different scope' do
let(:base) { __LINE__ }
class self::Foo
def self.bar; end; def bar(_arg); end

View file

@ -92,7 +92,7 @@ describe Mutant::Matcher::Method::Singleton, '#each' do
end
context 'when defined multiple times in the same line' do
context 'with method on differend scope' do
context 'with method on different scope' do
let(:base) { __LINE__ }
module self::Namespace
module Foo; end

View file

@ -291,7 +291,7 @@ describe Mutant::Reporter::CLI do
describe '#report' do
subject { object.report(result) }
context 'with full covergage' do
context 'with full coverage' do
let(:mutation_result_success) { true }
it 'writes report to output' do