diff --git a/osu.Game/Rulesets/Difficulty/Utils/ReverseQueue.cs b/osu.Game/Rulesets/Difficulty/Utils/ReverseQueue.cs
index e94fbd4e0f..f104b8105a 100644
--- a/osu.Game/Rulesets/Difficulty/Utils/ReverseQueue.cs
+++ b/osu.Game/Rulesets/Difficulty/Utils/ReverseQueue.cs
@@ -9,6 +9,8 @@ namespace osu.Game.Rulesets.Difficulty.Utils
{
///
/// An indexed queue where items are indexed beginning from the most recently enqueued item.
+ /// Enqueuing an item pushes all existing indexes up by one and inserts the item at index 0.
+ /// Dequeuing an item removes the item from the highest index and returns it.
///
public class ReverseQueue : IEnumerable
{