From 8683bd79fa8978371ca8ab164bd5181ce88f9eb0 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Thu, 21 Apr 2022 19:56:32 +0100 Subject: [PATCH] [ci skip] Format Endianess enum --- X10D/src/Endianness.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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 +}