Skip to content

Commit d0ffb32

Browse files
committed
Fix some comments
***NO_CI*** Signed-off-by: josesimoes <[email protected]>
1 parent fea8550 commit d0ffb32

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

source/nanoFramework.CoreLibrary/System/DateTime.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public struct DateTime
138138
/// Initializes a new instance of the <see cref="DateTime"/> structure to a specified number of ticks.
139139
/// </summary>
140140
/// <param name="ticks">A date and time expressed in the number of 100-nanosecond intervals. </param>
141-
/// <exception cref="System.ArgumentOutOfRangeException"><paramref name="ticks"/> - Ticks must be between <see cref="DateTime.MinValue.Ticks"/> and <see cref="DateTime.MaxValue.Ticks"/>.</exception>
141+
/// <exception cref="System.ArgumentOutOfRangeException"><paramref name="ticks"/> - Ticks must be between <see cref="DateTime.MinValue"/> and <see cref="DateTime.MaxValue"/>.</exception>
142142
public DateTime(long ticks)
143143
{
144144
ticks -= _ticksAtOrigin;

source/nanoFramework.CoreLibrary/System/Double.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ public struct Double
6363
/// <summary>
6464
/// Compares this instance to a specified double-precision floating-point number and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified double-precision floating-point number.
6565
/// </summary>
66-
/// <param name="d">A double-precision floating-point number to compare.</param>
6766
/// <param name="value">A double-precision floating-point number to compare.</param>
6867
/// <returns>A signed number indicating the relative values of this instance and value.
6968
/// Less than zero: This instance is less than value. -or- This instance is not a number (<see cref="NaN"/>) and value is a number.

source/nanoFramework.CoreLibrary/System/Single.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ public static bool IsPositiveInfinity(float f)
107107
/// <summary>
108108
/// Compares this instance to a specified single-precision floating-point number and returns an integer that indicates whether the value of this instance is less than, equal to, or greater than the value of the specified single-precision floating-point number.
109109
/// </summary>
110-
/// <param name="f">A single-precision floating-point number to compare.</param>
111110
/// <param name="value">A single-precision floating-point number to compare.</param>
112111
/// <returns>A signed number indicating the relative values of this instance and value.
113112
/// Less than zero: This instance is less than value. -or- This instance is not a number (<see cref="NaN"/>) and value is a number.

0 commit comments

Comments
 (0)