diff --git a/spec/lib/annotate_rb/model_annotator/model_class_getter_spec.rb b/spec/lib/annotate_rb/model_annotator/model_class_getter_spec.rb index 923857e5..6be9a526 100644 --- a/spec/lib/annotate_rb/model_annotator/model_class_getter_spec.rb +++ b/spec/lib/annotate_rb/model_annotator/model_class_getter_spec.rb @@ -121,7 +121,7 @@ class FooWithKnownMacro < ActiveRecord::Base end end - context "when the file includes invlaid multibyte chars (USASCII)" do + context "when the file includes invalid multibyte chars (USASCII)" do context 'when class FooWithUtf8 is defined in "foo_with_utf8.rb"' do let :filename do "foo_with_utf8.rb" diff --git a/spec/lib/annotate_rb/model_annotator/model_wrapper_spec.rb b/spec/lib/annotate_rb/model_annotator/model_wrapper_spec.rb index 0b17cb25..189b9eb9 100644 --- a/spec/lib/annotate_rb/model_annotator/model_wrapper_spec.rb +++ b/spec/lib/annotate_rb/model_annotator/model_wrapper_spec.rb @@ -57,7 +57,7 @@ context "with options[:format_rdoc]" do let!(:format_rdoc_option) { true } - it "should return the max width ncluding the length of the comments and the length of the rdoc" do + it "should return the max width including the length of the comments and the length of the rdoc" do is_expected.to eq(expect_length) end end @@ -65,7 +65,7 @@ context "with options[:format_rdoc] is false" do let!(:format_rdoc_option) { false } - it "should return the max width ncluding the length of the comments" do + it "should return the max width including the length of the comments" do is_expected.to eq(expect_length) end end @@ -85,7 +85,7 @@ context "with options[:format_rdoc]" do let!(:format_rdoc_option) { true } - it "should return the max width ncluding the length of the rdoc" do + it "should return the max width including the length of the rdoc" do is_expected.to eq(expect_length) end end