[ci skip] Format Endianess enum

This commit is contained in:
Oliver Booth 2022-04-21 19:56:32 +01:00
parent 20c438b807
commit 8683bd79fa
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
1 changed files with 3 additions and 5 deletions

View File

@ -10,12 +10,10 @@ public enum Endianness
/// <summary> /// <summary>
/// The value should be read as though it uses little endian encoding. /// The value should be read as though it uses little endian encoding.
/// </summary> /// </summary>
[Description("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,
LittleEndian,
/// <summary> /// <summary>
/// The value should be read as though it uses big endian encoding. /// The value should be read as though it uses big endian encoding.
/// </summary> /// </summary>
[Description("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
BigEndian }
}