Skip to content

Commit a67e9ac

Browse files
committed
Fix build
1 parent 2dac5e1 commit a67e9ac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Build/BackEnd/BuildManager/BuildManager.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2501,10 +2501,10 @@ private void HandleNodeShutdown(int node, NodeShutdown shutdownPacket)
25012501
}
25022502

25032503
/// <summary>
2504-
/// Report the received <paramref name="fileAccessReport"/> to the <see cref="FileAccessManager"/>.
2504+
/// Report the received <paramref name="fileAccessReport"/> to the file access manager.
25052505
/// </summary>
25062506
/// <param name="nodeId">The id of the node from which the <paramref name="fileAccessReport"/> was received.</param>
2507-
/// <param name="fileAccessReport">The file access to report to the <see cref="FileAccessManager"/>.</param>
2507+
/// <param name="fileAccessReport">The file access report.</param>
25082508
private void HandleFileAccessReport(int nodeId, FileAccessReport fileAccessReport)
25092509
{
25102510
#if FEATURE_REPORTFILEACCESSES
@@ -2516,10 +2516,10 @@ private void HandleFileAccessReport(int nodeId, FileAccessReport fileAccessRepor
25162516
}
25172517

25182518
/// <summary>
2519-
/// Report the received <paramref name="processReport"/> to the <see cref="FileAccessManager"/>.
2519+
/// Report the received <paramref name="processReport"/> to the file access manager.
25202520
/// </summary>
25212521
/// <param name="nodeId">The id of the node from which the <paramref name="processReport"/> was received.</param>
2522-
/// <param name="processReport">The process data to report to the <see cref="FileAccessManager"/>.</param>
2522+
/// <param name="processReport">The process data report.</param>
25232523
private void HandleProcessReport(int nodeId, ProcessReport processReport)
25242524
{
25252525
#if FEATURE_REPORTFILEACCESSES

0 commit comments

Comments
 (0)