Update SPlusUtils.cs

Fix typo.
This commit is contained in:
Scott Pidzarko
2023-01-06 15:07:11 -08:00
committed by GitHub
parent 0c8f8242e8
commit b47e305d9f

View File

@@ -12,7 +12,7 @@ namespace ICD.Common.Utils
/// Convert two ushort's to an int
/// </summary>
/// <param name="lowWord">ushort for the least significant 16 bits</param>
/// <param name="highWord">ushort for the most significant 1 bits</param>
/// <param name="highWord">ushort for the most significant 16 bits</param>
/// <returns></returns>
[PublicAPI("S+")]
public static int ConvertToInt(ushort lowWord, ushort highWord)
@@ -20,4 +20,4 @@ namespace ICD.Common.Utils
return (highWord << 16) + lowWord;
}
}
}
}