Skip to content

Commit 5aaf777

Browse files
committed
Merge remote-tracking branch 'upstream/master' into RemoveNullableMethods
2 parents cb1d73d + b06a9c3 commit 5aaf777

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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>

UnitsNet/Scripts/Include-GenerateNumberExtensionsSourceCode.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function GenerateNumberExtensionsSourceCode($quantity)
1+
function GenerateNumberExtensionsSourceCode($quantity)
22
{
33
$quantityName = $quantity.Name;
44
$units = $quantity.Units;

0 commit comments

Comments
 (0)