From ffe7edc16ac13f4460d3dbfc327d1622bfb7e32e Mon Sep 17 00:00:00 2001 From: Samuel Cattini-Schultz Date: Tue, 6 Apr 2021 11:06:10 +1000 Subject: [PATCH] Update xmldocs Co-authored-by: Dan Balasescu --- osu.Game/Rulesets/Difficulty/Utils/ReverseQueue.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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() {