Skip to content

Commit e4f71d7

Browse files
committed
Fix grammar
1 parent 45011ae commit e4f71d7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/lib/rex/image_source/disk_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
described_class.allocate
2525
end
2626

27-
context "when _len not send as argument" do
27+
context "when _len not sent as argument" do
2828
let(:_file) { file }
2929

3030
it "initializes size to file length" do
@@ -33,7 +33,7 @@
3333
end
3434
end
3535

36-
context "when _offset not send argument" do
36+
context "when _offset not sent as argument" do
3737
let(:_file) { file }
3838
it "initializes file_offset to 0" do
3939
disk_class.send(:initialize, file)
@@ -43,7 +43,7 @@
4343
end
4444

4545
describe "#read" do
46-
context "when offset minor than 0" do
46+
context "when offset less than 0" do
4747
let(:offset) { -1 }
4848
let(:len) { 20 }
4949

@@ -52,7 +52,7 @@
5252
end
5353
end
5454

55-
context "when offset plus len major than size" do
55+
context "offset plus len greater than size" do
5656
let(:offset) { 0 }
5757
let(:len) { 16000 }
5858

0 commit comments

Comments
 (0)