Skip to content

Commit

Permalink
Fix typos (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
tagliala authored Jul 25, 2024
1 parent 56a839e commit 682a32c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/mini_magick_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@
@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")
Expand Down
2 changes: 1 addition & 1 deletion test/vips_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@
@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)
Expand Down

0 comments on commit 682a32c

Please sign in to comment.