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 +}