[lldb][NFC] Fix typo in 'watchpoint delete' error message
authorRaphael Isemann <teemperor@gmail.com>
Tue, 7 Apr 2020 14:11:16 +0000 (16:11 +0200)
committerRaphael Isemann <teemperor@gmail.com>
Tue, 7 Apr 2020 14:11:32 +0000 (16:11 +0200)
lldb/source/Commands/CommandObjectWatchpoint.cpp

index 63baae8..ce46629 100644 (file)
@@ -41,7 +41,7 @@ static bool CheckTargetForWatchpointOperations(Target *target,
   bool process_is_valid =
       target->GetProcessSP() && target->GetProcessSP()->IsAlive();
   if (!process_is_valid) {
-    result.AppendError("Thre's no process or it is not alive.");
+    result.AppendError("There's no process or it is not alive.");
     result.SetStatus(eReturnStatusFailed);
     return false;
   }