From b47e305d9f3b0121127fe419151fad110b7e5ea1 Mon Sep 17 00:00:00 2001 From: Scott Pidzarko Date: Fri, 6 Jan 2023 15:07:11 -0800 Subject: [PATCH] Update SPlusUtils.cs Fix typo. --- ICD.Common.Utils/SPlusUtils.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ICD.Common.Utils/SPlusUtils.cs b/ICD.Common.Utils/SPlusUtils.cs index 5ee6339..41d2ee8 100644 --- a/ICD.Common.Utils/SPlusUtils.cs +++ b/ICD.Common.Utils/SPlusUtils.cs @@ -12,7 +12,7 @@ namespace ICD.Common.Utils /// Convert two ushort's to an int /// /// ushort for the least significant 16 bits - /// ushort for the most significant 1 bits + /// ushort for the most significant 16 bits /// [PublicAPI("S+")] public static int ConvertToInt(ushort lowWord, ushort highWord) @@ -20,4 +20,4 @@ namespace ICD.Common.Utils return (highWord << 16) + lowWord; } } -} \ No newline at end of file +}