diff --git a/osu.Game/Rulesets/Difficulty/Utils/ReverseQueue.cs b/osu.Game/Rulesets/Difficulty/Utils/ReverseQueue.cs
index 08b2936876..e94fbd4e0f 100644
--- a/osu.Game/Rulesets/Difficulty/Utils/ReverseQueue.cs
+++ b/osu.Game/Rulesets/Difficulty/Utils/ReverseQueue.cs
@@ -8,7 +8,7 @@ using System.Collections.Generic;
namespace osu.Game.Rulesets.Difficulty.Utils
{
///
- /// An indexed queue where items are indexed beginning from the end instead of the start.
+ /// An indexed queue where items are indexed beginning from the most recently enqueued item.
///
public class ReverseQueue : IEnumerable
{
@@ -76,7 +76,7 @@ namespace osu.Game.Rulesets.Difficulty.Utils
}
///
- /// Dequeues an item from the and returns it.
+ /// Dequeues the least recently enqueued item from the and returns it.
///
/// The item dequeued from the .
public T Dequeue()
@@ -97,7 +97,7 @@ namespace osu.Game.Rulesets.Difficulty.Utils
}
///
- /// Returns an enumerator which enumerates items in the starting from the most recently enqueued one.
+ /// Returns an enumerator which enumerates items in the starting from the most recently enqueued item.
///
public IEnumerator GetEnumerator()
{