diff --git a/src/Magick.NET.Core/Types/Percentage.cs b/src/Magick.NET.Core/Types/Percentage.cs index 3559d43548..1d840f7ca4 100644 --- a/src/Magick.NET.Core/Types/Percentage.cs +++ b/src/Magick.NET.Core/Types/Percentage.cs @@ -165,18 +165,18 @@ public override int GetHashCode() => _value.GetHashCode(); /// - /// Multiplies the value by the percentage. + /// Multiplies the value by the specified percentage. /// /// The value to use. - /// the new value. + /// The new value. public double Multiply(double value) => (value * _value) / 100.0; /// - /// Multiplies the value by the percentage. + /// Multiplies the value by the specified percentage. /// /// The value to use. - /// the new value. + /// The new value. public int Multiply(int value) => (int)((value * _value) / 100.0);