Skip to content

Commit

Permalink
Fix incorrect doc comment for as_mut_rgba32f (#2402)
Browse files Browse the repository at this point in the history
  • Loading branch information
j10s authored Jan 11, 2025
1 parent e0c250f commit f4702f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynimage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ impl DynamicImage {
}
}

/// Return a mutable reference to an 16bit RGBA image
/// Return a mutable reference to an 32bit RGBA image
pub fn as_mut_rgba32f(&mut self) -> Option<&mut Rgba32FImage> {
match *self {
DynamicImage::ImageRgba32F(ref mut p) => Some(p),
Expand Down

0 comments on commit f4702f2

Please sign in to comment.