diff --git a/src/Tgstation.Server.Api/Models/CompilerStatus.cs b/src/Tgstation.Server.Api/Models/CompilerStatus.cs
index 4509c9c6f5..d3ed992ab1 100644
--- a/src/Tgstation.Server.Api/Models/CompilerStatus.cs
+++ b/src/Tgstation.Server.Api/Models/CompilerStatus.cs
@@ -1,32 +1,32 @@
namespace Tgstation.Server.Api.Models
{
- ///
- /// Status of the for an
- ///
+ ///
+ /// Status of the for an
+ ///
#pragma warning disable CA1717 // Only FlagsAttribute enums should have plural names
public enum CompilerStatus
#pragma warning restore CA1717 // Only FlagsAttribute enums should have plural names
{
- ///
- /// The is idle
- ///
+ ///
+ /// The is idle
+ ///
Idle,
///
/// Pre-compile scripts are running
///
PreCompile,
- ///
- /// The is being copied
- ///
- Copying,
+ ///
+ /// The is being copied
+ ///
+ Copying,
///
/// The .dme is having it's server side modifications applied
///
Modifying,
- ///
- /// DreamMaker is running
- ///
- Compiling,
+ ///
+ /// DreamMaker is running
+ ///
+ Compiling,
///
/// The DMAPI is being verified
///