Skip to content

Commit ec4f6ce

Browse files
Markus WeimerMarkus Weimer
Markus Weimer
authored and
Markus Weimer
committed
Forgot one instance
1 parent 284501e commit ec4f6ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Microsoft.ML.Core/Utilities/VBufferUtils.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1147,11 +1147,11 @@ private static void ApplyWithCoreCopy<TSrc, TDst>(ref VBuffer<TSrc> src, ref VBu
11471147
/// storing the result in <paramref name="dst"/>, overwriting any of its existing contents.
11481148
/// The contents of <paramref name="dst"/> do not affect calculation. If you instead wish
11491149
/// to calculate a function that reads and writes <paramref name="dst"/>, see
1150-
/// <see cref="ApplyWith"/> and <see cref="ApplyWithEitherDefined"/>. Post-operation,
1150+
/// <see cref="ApplyWith{TSrc,TDst}"/> and <see cref="ApplyWithEitherDefined{TSrc,TDst}"/>. Post-operation,
11511151
/// <paramref name="dst"/> will be dense iff <paramref name="src"/> is dense.
11521152
/// </summary>
1153-
/// <seealso cref="ApplyWith"/>
1154-
/// <seealso cref="ApplyWithEitherDefined"/>
1153+
/// <seealso cref="ApplyWith{TSrc,TDst}"/>
1154+
/// <seealso cref="ApplyWithEitherDefined{TSrc,TDst}"/>
11551155
public static void ApplyIntoEitherDefined<TSrc, TDst>(ref VBuffer<TSrc> src, ref VBuffer<TDst> dst, Func<int, TSrc, TDst> func)
11561156
{
11571157
Contracts.CheckValue(func, nameof(func));

0 commit comments

Comments
 (0)