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.