From 8545cdf51b7e1f71d1559fd9d4dc5661eeb7e0df Mon Sep 17 00:00:00 2001 From: ip75 Date: Tue, 17 Sep 2019 15:20:53 +0300 Subject: [PATCH] change comment --- src/ImageSharp/Processing/Extensions/LightnessExtension.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/ImageSharp/Processing/Extensions/LightnessExtension.cs b/src/ImageSharp/Processing/Extensions/LightnessExtension.cs index b56eee1b86..688c6cd3c3 100644 --- a/src/ImageSharp/Processing/Extensions/LightnessExtension.cs +++ b/src/ImageSharp/Processing/Extensions/LightnessExtension.cs @@ -6,13 +6,12 @@ using SixLabors.Primitives; namespace SixLabors.ImageSharp.Processing { /// - /// Defines extensions that allow the alteration of the hue component of an - /// using Mutate/Clone. + /// Defines extensions that allow to change image lightness in terms of HSL. /// public static class LightnessExtension { /// - /// Alters the hue component of the image. + /// Alters the lightness parameter of the image. /// /// The image this method extends. /// Lightness parameter of image in HSL color scheme. @@ -21,7 +20,7 @@ namespace SixLabors.ImageSharp.Processing => source.ApplyProcessor(new LightnessProcessor(lightness)); /// - /// Alters the hue component of the image. + /// Alters the lightness parameter of the image. /// /// The image this method extends. /// Lightness parameter of image in HSL color scheme.