Skip to content

Commit e1f9f72

Browse files
committed
reworded orderedset summary
1 parent 4fe52bf commit e1f9f72

File tree

1 file changed

+1
-1
lines changed
  • com.unity.perception/Runtime/Randomization/Randomizers

1 file changed

+1
-1
lines changed

com.unity.perception/Runtime/Randomization/Randomizers/OrderedSet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace UnityEngine.Perception.Randomization.Randomizers
66
/// <summary>
77
/// This collection has the properties of a HashSet that also preserves insertion order. As such, this data
88
/// structure demonstrates the following time complexities:
9-
/// O(1) lookup, O(1) add, O(1) remove, and O(n) traversal
9+
/// O(1) lookup, O(1) insertion, O(1) removal, and O(n) traversal
1010
/// </summary>
1111
/// <typeparam name="T">The item type to store in this collection</typeparam>
1212
class OrderedSet<T> : ICollection<T>

0 commit comments

Comments
 (0)