File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ def with_filtered_backtrace(filter)
109
109
end
110
110
end
111
111
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
113
113
# the step to have that result.
114
114
class Raisable < StandardError
115
115
attr_reader :message , :duration
Original file line number Diff line number Diff line change @@ -77,11 +77,11 @@ module Ast
77
77
expect ( doc_string . encoding ) . to eq Encoding . find ( 'US-ASCII' )
78
78
end
79
79
80
- it 'allows implicit convertion to a String' do
80
+ it 'allows implicit conversion to a String' do
81
81
expect ( 'expected content' ) . to include ( doc_string )
82
82
end
83
83
84
- it 'allows explicit convertion to a String' do
84
+ it 'allows explicit conversion to a String' do
85
85
expect ( doc_string . to_s ) . to eq 'content'
86
86
end
87
87
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ module Cucumber::Core::Ast
62
62
expect ( matching ) . to be_match ( precise )
63
63
end
64
64
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
66
66
expect ( matching ) . not_to be_match ( same_file_other_line )
67
67
end
68
68
You can’t perform that action at this time.
0 commit comments