Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ripytide committed Jun 9, 2024
1 parent e0fb790 commit 7dba87b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compose.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ where
/// use imageproc::definitions::Image;
/// use image::LumaA;
///
/// let bottom = Image::from_pixel(4, 4, LumaA([0, 255]));
/// let top = Image::from_pixel(4, 4, LumaA([0, 255]));
/// let bottom = Image::from_pixel(4, 4, LumaA([0u8, 255]));
/// let top = Image::from_pixel(4, 4, LumaA([255u8, 0]));
///
/// let overlay = overlay(&bottom, &top, 0, 0);
///
Expand Down

0 comments on commit 7dba87b

Please sign in to comment.