Fix typos (#126)

This commit is contained in:
Geremia Taglialatela
2024-07-25 09:42:06 +02:00
committed by GitHub
parent 56a839ed53
commit 682a32cd46
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -421,7 +421,7 @@ describe "ImageProcessing::MiniMagick" do
@pipeline = ImageProcessing::MiniMagick.source(@portrait)
end
it "rotates the image by specifed number of degrees" do
it "rotates the image by specified number of degrees" do
assert_dimensions [600, 800], @pipeline.rotate!(0)
assert_dimensions [800, 600], @pipeline.rotate!(90)
assert_dimensions [600, 800], @pipeline.rotate!("180")
+1 -1
View File
@@ -394,7 +394,7 @@ describe "ImageProcessing::Vips" do
@pipeline = ImageProcessing::Vips.source(@portrait)
end
it "rotates by muliples of 90" do
it "rotates by multiples of 90" do
assert_dimensions [600, 800], @pipeline.rotate!(0)
assert_dimensions [800, 600], @pipeline.rotate!(90)
assert_dimensions [600, 800], @pipeline.rotate!(180)