diff --git a/osu.Game/Utils/TaskChain.cs b/osu.Game/Utils/TaskChain.cs
index b397b0c45b..64d523bd3d 100644
--- a/osu.Game/Utils/TaskChain.cs
+++ b/osu.Game/Utils/TaskChain.cs
@@ -16,6 +16,11 @@ namespace osu.Game.Utils
private readonly object currentTaskLock = new object();
private Task? currentTask;
+ ///
+ /// Adds a new task to the end of this .
+ ///
+ /// The task creation function.
+ /// The awaitable .
public Task Add(Func taskFunc)
{
lock (currentTaskLock)