diff --git a/src/Primitively.Abstractions/DoubleAttribute.cs b/src/Primitively.Abstractions/DoubleAttribute.cs index e728fdd..1d2c7f7 100644 --- a/src/Primitively.Abstractions/DoubleAttribute.cs +++ b/src/Primitively.Abstractions/DoubleAttribute.cs @@ -62,7 +62,7 @@ public DoubleAttribute(int digits, MidpointRounding mode) /// /// Valid values are: -1 to 15. /// Values above 15 will default to: -1. - /// Values below 0 with default to: -1. + /// Values below -1 will default to: -1. /// A value of -1 will result in: no rounding. /// public int Digits { get; } diff --git a/src/Primitively.Abstractions/SingleAttribute.cs b/src/Primitively.Abstractions/SingleAttribute.cs index 4223475..fbdf3f8 100644 --- a/src/Primitively.Abstractions/SingleAttribute.cs +++ b/src/Primitively.Abstractions/SingleAttribute.cs @@ -62,7 +62,7 @@ public SingleAttribute(int digits, MidpointRounding mode) /// /// Valid values are: -1 to 6. /// Values above 6 will default to: -1. - /// Values below 0 with default to: -1. + /// Values below -1 with default to: -1. /// A value of -1 will result in: no rounding. /// public int Digits { get; }