change 2 normal comments in magick.rs into docstrings

This commit is contained in:
Maks Rawski
2022-11-13 18:41:07 +01:00
parent b3fc4473b9
commit d123b95b9e

View File

@ -986,10 +986,10 @@ impl MagickWand {
MagickTransformImageColorspace => transform_image_colorspace( MagickTransformImageColorspace => transform_image_colorspace(
colorspace: bindings::ColorspaceType) colorspace: bindings::ColorspaceType)
// Sets the image to the specified alpha level. /// Sets the image to the specified alpha level.
MagickSetImageAlpha => set_image_alpha(alpha: f64) MagickSetImageAlpha => set_image_alpha(alpha: f64)
// Control the brightness, saturation, and hue of an image /// Control the brightness, saturation, and hue of an image
MagickModulateImage => modulate_image(brightness: f64, saturation: f64, hue: f64) MagickModulateImage => modulate_image(brightness: f64, saturation: f64, hue: f64)
/// Control the brightness and contrast /// Control the brightness and contrast