Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Shared/TaskHostTaskCancelled.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//-----------------------------------------------------------------------
// </copyright>
// <summary>A packet which informs the task host that the task it is
// currently executing has been canceled.</summary>
// currently executing has been cancelled.</summary>
//-----------------------------------------------------------------------

using System;
Expand All @@ -15,7 +15,7 @@ namespace Microsoft.Build.BackEnd
{
/// <summary>
/// TaskHostTaskCancelled informs the task host that the task it is
/// currently executing has been canceled.
/// currently executing has been cancelled.
/// </summary>
internal class TaskHostTaskCancelled : INodePacket
{
Expand All @@ -40,7 +40,7 @@ public NodePacketType Type
/// <param name="translator">The translator to use.</param>
public void Translate(INodePacketTranslator translator)
{
// Do nothing -- this packet doesn't contain any parameters.
// Do nothing -- this packet doesn't contain any parameters.
}

/// <summary>
Expand Down