fixed comment

This commit is contained in:
MrGadget 2022-04-17 12:23:44 -04:00
parent 3839fafade
commit 63fdd53903

View File

@ -40,7 +40,7 @@ public static void CopyTo<T>(this IEnumerable<T> source, List<T> destination)
}
#if !UNITY_2021_OR_NEWER
// Unity 2019 / 2020 don't have Queue.TryDeque which we need for batching.
// Unity 2020 and earlier doesn't have Queue.TryDequeue which we need for batching.
public static bool TryDequeue<T>(this Queue<T> source, out T element)
{
if (source.Count > 0)