diff --git a/X10D/src/Endianness.cs b/X10D/src/Endianness.cs
index 92397f0..eb9f54d 100644
--- a/X10D/src/Endianness.cs
+++ b/X10D/src/Endianness.cs
@@ -7,9 +7,15 @@ namespace X10D
///
public enum Endianness
{
+ ///
+ /// The value should be read as though it uses little endian encoding.
+ ///
[Description("The value should be read as though it uses little endian encoding.")]
LittleEndian,
+ ///
+ /// The value should be read as though it uses big endian encoding.
+ ///
[Description("The value should be read as though it uses big endian encoding.")]
BigEndian
}