Skip to content

Commit 682a32c

Browse files
authored
Fix typos (#126)
1 parent 56a839e commit 682a32c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/mini_magick_test.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@
421421
@pipeline = ImageProcessing::MiniMagick.source(@portrait)
422422
end
423423

424-
it "rotates the image by specifed number of degrees" do
424+
it "rotates the image by specified number of degrees" do
425425
assert_dimensions [600, 800], @pipeline.rotate!(0)
426426
assert_dimensions [800, 600], @pipeline.rotate!(90)
427427
assert_dimensions [600, 800], @pipeline.rotate!("180")

test/vips_test.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@
394394
@pipeline = ImageProcessing::Vips.source(@portrait)
395395
end
396396

397-
it "rotates by muliples of 90" do
397+
it "rotates by multiples of 90" do
398398
assert_dimensions [600, 800], @pipeline.rotate!(0)
399399
assert_dimensions [800, 600], @pipeline.rotate!(90)
400400
assert_dimensions [600, 800], @pipeline.rotate!(180)

0 commit comments

Comments
 (0)