proper casing

This commit is contained in:
Jack Kanarish
2018-05-03 12:10:16 -04:00
parent 9b1ddf41d2
commit d4f5413ce6
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
{ {
public static class BoolExtensions public static class BoolExtensions
{ {
public static ushort ToUshort(this bool b) public static ushort ToUShort(this bool b)
{ {
return b ? (ushort)1 : (ushort)0; return b ? (ushort)1 : (ushort)0;
} }

View File

@@ -1,6 +1,6 @@
namespace ICD.Common.Utils.Extensions namespace ICD.Common.Utils.Extensions
{ {
public static class UshortExtensions public static class UShortExtensions
{ {
public static bool ToBool(this ushort u) public static bool ToBool(this ushort u)
{ {