Skip to content

Commit 7215e71

Browse files
authored
Merge pull request #138 from cucumber/fix/misspellings
Fix misspellings
2 parents 718b657 + dffdc17 commit 7215e71

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/cucumber/core/test/result.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def with_filtered_backtrace(filter)
109109
end
110110
end
111111

112-
# Base class for exceptions that can be raised in a step defintion causing
112+
# Base class for exceptions that can be raised in a step definition causing
113113
# the step to have that result.
114114
class Raisable < StandardError
115115
attr_reader :message, :duration

spec/cucumber/core/ast/doc_string_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ module Ast
7777
expect( doc_string.encoding ).to eq Encoding.find('US-ASCII')
7878
end
7979

80-
it 'allows implicit convertion to a String' do
80+
it 'allows implicit conversion to a String' do
8181
expect( 'expected content' ).to include(doc_string)
8282
end
8383

84-
it 'allows explicit convertion to a String' do
84+
it 'allows explicit conversion to a String' do
8585
expect( doc_string.to_s ).to eq 'content'
8686
end
8787

spec/cucumber/core/ast/location_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ module Cucumber::Core::Ast
6262
expect( matching ).to be_match(precise)
6363
end
6464

65-
it "does not match a precise location on a differnt line in the same file" do
65+
it "does not match a precise location on a different line in the same file" do
6666
expect( matching ).not_to be_match(same_file_other_line)
6767
end
6868

0 commit comments

Comments
 (0)