grammar fix

This commit is contained in:
mischa 2023-09-05 09:17:10 +02:00
parent ae496ef0ee
commit 55daefab2a

View File

@ -47,7 +47,7 @@ public static void CopyTo<T>(this IEnumerable<T> source, List<T> destination)
}
#if !UNITY_2021_OR_NEWER
// Unity 2020 and earlier doesn't have Queue.TryDequeue which we need for batching.
// Unity 2020 and earlier don'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)