diff --git a/BitStream.cs b/BitStream.cs
index 5243acc..7888cf7 100644
--- a/BitStream.cs
+++ b/BitStream.cs
@@ -91,7 +91,7 @@ namespace SabreTools.Compression
/// Read a full UInt16, if possible
///
/// The next UInt16, null on error or end of stream
- public byte? ReadUInt16()
+ public ushort? ReadUInt16()
{
throw new NotImplementedException();
}
@@ -100,7 +100,7 @@ namespace SabreTools.Compression
/// Read a full UInt32, if possible
///
/// The next UInt32, null on error or end of stream
- public byte? ReadUInt32()
+ public uint? ReadUInt32()
{
throw new NotImplementedException();
}
@@ -109,7 +109,7 @@ namespace SabreTools.Compression
/// Read a full UInt64, if possible
///
/// The next UInt64, null on error or end of stream
- public byte? ReadUInt64()
+ public ulong? ReadUInt64()
{
throw new NotImplementedException();
}