diff --git a/Assets/Scripts/Console/DebugConsole.cs b/Assets/Scripts/Console/DebugConsole.cs
index c91611e..69b105f 100644
--- a/Assets/Scripts/Console/DebugConsole.cs
+++ b/Assets/Scripts/Console/DebugConsole.cs
@@ -92,11 +92,11 @@ namespace Cyber.Console {
Print(text + "\n");
}
- // TODO: Handle removing history when it gets very long. Very long console logs might cause problems when displaying new prints.
///
/// Prints text into the Console.
///
/// Text.
+ /// \todo Handle removing history when it gets very long. Very long console logs might cause problems when displaying new prints.
public void Print(string text) {
TextField.text += text;
}