From c3cb8ba2616faf166e6ba4d9b7670b8b7e78c491 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 16 Mar 2021 14:42:33 +0000 Subject: [PATCH] (#14) Enforce 130-char line length --- X10D/src/Int64Extensions/Int64Extensions.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/X10D/src/Int64Extensions/Int64Extensions.cs b/X10D/src/Int64Extensions/Int64Extensions.cs index 0935712..968aab0 100644 --- a/X10D/src/Int64Extensions/Int64Extensions.cs +++ b/X10D/src/Int64Extensions/Int64Extensions.cs @@ -106,10 +106,12 @@ namespace X10D.Int64Extensions } /// - /// Converts the value of the current 64-bit signed integer to an equivalent value. + /// Converts the value of the current 64-bit signed integer to an equivalent Boolean value. /// /// The value to convert. - /// if is not zero, or otherwise. + /// + /// if is not zero, or otherwise. + /// public static bool ToBoolean(this long value) { return value != 0;