Skip to content

Commit 902d146

Browse files
xml docs
1 parent e5863a6 commit 902d146

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

DurableStateMachines/DurableListLookup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

DurableStateMachines/DurableSetLookup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

DurableStateMachines/DurableTree.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)