(#15) Fix typo in short.IsEven xmldoc

This commit is contained in:
Oliver Booth 2021-08-31 15:48:40 +01:00
parent 1ee5b8ef64
commit 0bafb64ecb
No known key found for this signature in database
GPG Key ID: A4AC17007530E9B4
1 changed files with 2 additions and 2 deletions

View File

@ -57,11 +57,11 @@ namespace X10D
}
/// <summary>
/// Returns a value indicating whether the current value is not evenly divisible by 2.
/// Returns a value indicating whether the current value is evenly divisible by 2.
/// </summary>
/// <param name="value">The value whose parity to check.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="value" /> is not evenly divisible by 2, or <see langword="false" />
/// <see langword="true" /> if <paramref name="value" /> is evenly divisible by 2, or <see langword="false" />
/// otherwise.
/// </returns>
public static bool IsEven(this short value)