mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 03:57:32 +00:00
Update SPlusUtils.cs
Fix typo.
This commit is contained in:
parent
0c8f8242e8
commit
b47e305d9f
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue