Skip to content

Commit 903b7f6

Browse files
committed
Doc fix
1 parent b29687d commit 903b7f6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

UnitsNet/Comparison.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static class Comparison
4444
/// Absolute tolerance is defined as the maximum allowable absolute difference between <paramref name="referenceValue"/> and
4545
/// <paramref name="otherValue"/> as a fixed number.
4646
/// <example>
47-
/// In this example, the two values will be equal if abs(<paramref name="referenceValue"/> - <paramref name="otherValue"/>) <= 0.01
47+
/// In this example, the two values will be equal if abs(<paramref name="referenceValue"/> - <paramref name="otherValue"/>) &lt;= 0.01
4848
/// <code>
4949
/// Equals(a, b, 0.01, ComparisonType.Absolute);
5050
/// </code>
@@ -102,10 +102,10 @@ public static bool EqualsRelative(double referenceValue, double otherValue, doub
102102
/// <summary>
103103
/// Checks if two values are equal with a given absolute tolerance.
104104
/// <para>
105-
/// Absolute tolerance is defined as the maximum allowable absolute difference between <paramref name="referenceValue"/> and
106-
/// <paramref name="otherValue"/> as a fixed number.
105+
/// Absolute tolerance is defined as the maximum allowable absolute difference between <paramref name="value1"/> and
106+
/// <paramref name="value2"/> as a fixed number.
107107
/// <example>
108-
/// In this example, the two values will be equal if abs(<paramref name="referenceValue"/> - <paramref name="otherValue"/>) <= 0.01
108+
/// In this example, the two values will be equal if abs(<paramref name="value1"/> - <paramref name="value2"/>) &lt;= 0.01
109109
/// <code>
110110
/// Equals(a, b, 0.01, ComparisonType.Absolute);
111111
/// </code>

0 commit comments

Comments
 (0)