Fix missing comma in Enums.cs

This commit is contained in:
Rebecca Wallander
2026-01-04 10:07:15 +01:00
committed by GitHub
parent 5bb89e27ef
commit 8994b99b10

View File

@@ -216,7 +216,7 @@ public sealed partial class AaruFormat
/// Sector length is too big.
/// <remarks>AARUF_ERROR_INVALID_SECTOR_LENGTH</remarks>
/// </summary>
InvalidSectorLength = -31
InvalidSectorLength = -31,
/// <summary>
/// Requested flux data not present in image.
/// &lt;remarks&gt;AARUF_ERROR_FLUX_DATA_NOT_FOUND&lt;/remarks&gt;
@@ -225,4 +225,4 @@ public sealed partial class AaruFormat
}
#endregion
}
}