diff --git a/X10D/src/Endianness.cs b/X10D/src/Endianness.cs
index 9fde0ee..3b23c07 100644
--- a/X10D/src/Endianness.cs
+++ b/X10D/src/Endianness.cs
@@ -10,12 +10,10 @@ 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,
+ [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
-}
\ No newline at end of file
+ [Description("The value should be read as though it uses big endian encoding.")] BigEndian
+}