From 0bafb64ecba9117e4396d8c88eab3b9706c48249 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 31 Aug 2021 15:48:40 +0100 Subject: [PATCH] (#15) Fix typo in short.IsEven xmldoc --- X10D/src/Int16Extensions/Int16Extensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/X10D/src/Int16Extensions/Int16Extensions.cs b/X10D/src/Int16Extensions/Int16Extensions.cs index e340287..5458e3c 100644 --- a/X10D/src/Int16Extensions/Int16Extensions.cs +++ b/X10D/src/Int16Extensions/Int16Extensions.cs @@ -57,11 +57,11 @@ namespace X10D } /// - /// 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. /// /// The value whose parity to check. /// - /// if is not evenly divisible by 2, or + /// if is evenly divisible by 2, or /// otherwise. /// public static bool IsEven(this short value)