Skip to content

Commit e16b807

Browse files
committed
Corrects typos in group_spec.rb
1 parent 7837f31 commit e16b807

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/group_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
expect(MyCounter.start(["1", "2", "--third", "3"])).to eq([ 1, 2, 3, nil, nil, nil ])
1414
end
1515

16-
it "uses argument default value" do
16+
it "uses argument's default value" do
1717
expect(MyCounter.start(["1", "--third", "3"])).to eq([ 1, 2, 3, nil, nil, nil ])
1818
end
1919

@@ -35,7 +35,7 @@
3535
expect{ WhinyGenerator.start }.to raise_error(ArgumentError, /thor wrong_arity takes 1 argument, but it should not/)
3636
end
3737

38-
it "invokes help message if any of the shortcuts is given" do
38+
it "invokes help message if any of the shortcuts are given" do
3939
MyCounter.should_receive(:help)
4040
MyCounter.start(["-h"])
4141
end

0 commit comments

Comments
 (0)