Skip to content

Commit 84dde17

Browse files
committed
Fix unresolved MapConfig XML doc cref in ChildContextConfig
MapConfig is now generic (MapConfig<TItem>), so the bare <see cref="MapConfig"/> no longer resolved and broke the build under TreatWarningsAsErrors (CS1574). Reference the generic type as MapConfig{TItem}.
1 parent cca4e74 commit 84dde17

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Libraries/src/Amazon.Lambda.DurableExecution/ChildContextConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public sealed class ChildContextConfig
4747
/// </para>
4848
/// <para>
4949
/// This mirrors the <c>NestingType.Flat</c> option on
50-
/// <see cref="MapConfig"/> and <see cref="ParallelConfig"/>, letting a
50+
/// <see cref="MapConfig{TItem}"/> and <see cref="ParallelConfig"/>, letting a
5151
/// standalone <see cref="IDurableContext.RunInChildContextAsync{T}(System.Func{IDurableContext, System.Threading.CancellationToken, System.Threading.Tasks.Task{T}}, string?, ChildContextConfig?, System.Threading.CancellationToken)"/>
5252
/// call opt into virtual contexts — for example when manually fanning out
5353
/// work and awaiting the returned tasks with <c>Task.WhenAll</c>.

0 commit comments

Comments
 (0)