Merge pull request #1 from scottpidzarko/patch-1

PR: Update SPlusUtils.cs to fix typo in XMLdoc
This commit is contained in:
Drew Tingen
2023-01-10 11:32:40 -05:00
committed by GitHub

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