diff --git a/src/Shared/TaskHostTaskCancelled.cs b/src/Shared/TaskHostTaskCancelled.cs
index 164b5e96c46..9d173d5658f 100644
--- a/src/Shared/TaskHostTaskCancelled.cs
+++ b/src/Shared/TaskHostTaskCancelled.cs
@@ -3,7 +3,7 @@
//-----------------------------------------------------------------------
//
// A packet which informs the task host that the task it is
-// currently executing has been canceled.
+// currently executing has been cancelled.
//-----------------------------------------------------------------------
using System;
@@ -15,7 +15,7 @@ namespace Microsoft.Build.BackEnd
{
///
/// TaskHostTaskCancelled informs the task host that the task it is
- /// currently executing has been canceled.
+ /// currently executing has been cancelled.
///
internal class TaskHostTaskCancelled : INodePacket
{
@@ -40,7 +40,7 @@ public NodePacketType Type
/// The translator to use.
public void Translate(INodePacketTranslator translator)
{
- // Do nothing -- this packet doesn't contain any parameters.
+ // Do nothing -- this packet doesn't contain any parameters.
}
///