File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -410,7 +410,7 @@ private enum CommandType : uint
410410 private readonly struct ValueList ( object ? value ) : IEnumerable < TValue >
411411 {
412412 /// <summary>
413- /// Stores either a single V or an <see cref="ImmutableList{TValue}"/>, we avoid allocating a collection
413+ /// Stores either a single <see cref="TValue"/> or an <see cref="ImmutableList{TValue}"/>, we avoid allocating a collection
414414 /// for keys that only have one value associated with them, which is very common.
415415 /// </summary>
416416 private readonly object ? _value = value ;
Original file line number Diff line number Diff line change @@ -413,7 +413,7 @@ private enum CommandType : uint
413413 private readonly struct ValueSet ( object ? value ) : IEnumerable < TValue >
414414 {
415415 /// <summary>
416- /// Stores either a single V or an <see cref="ImmutableHashSet{TValue}"/>, we avoid allocating a collection
416+ /// Stores either a single <see cref="TValue"/> or an <see cref="ImmutableHashSet{TValue}"/>, we avoid allocating a collection
417417 /// for keys that only have one value associated with them, which is very common.
418418 /// </summary>
419419 private readonly object ? _value = value ;
Original file line number Diff line number Diff line change @@ -578,7 +578,7 @@ private sealed class Node(T? parent)
578578 }
579579
580580 /// <summary>
581- /// A high-performance, minimal-allocation queue implemented as a stack-only struct.
581+ /// A high-performance, minimal-allocation queue implemented as a struct.
582582 /// It is designed for short-lived, high-frequency operations like the
583583 /// breadth-first traversals within this class.
584584 /// </summary>
You can’t perform that action at this time.
0 commit comments