[Lldb-commits] [lldb] 95054ae - [lldb][NFC] Fix typo in 'watchpoint delete' error message

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Tue Apr 7 07:12:09 PDT 2020


Author: Raphael Isemann
Date: 2020-04-07T16:11:32+02:00
New Revision: 95054aeb07061dbfd6575c10673b9563430de64a

URL: https://github.com/llvm/llvm-project/commit/95054aeb07061dbfd6575c10673b9563430de64a
DIFF: https://github.com/llvm/llvm-project/commit/95054aeb07061dbfd6575c10673b9563430de64a.diff

LOG: [lldb][NFC] Fix typo in 'watchpoint delete' error message

Added: 
    

Modified: 
    lldb/source/Commands/CommandObjectWatchpoint.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Commands/CommandObjectWatchpoint.cpp b/lldb/source/Commands/CommandObjectWatchpoint.cpp
index 63baae8e4760..ce4662930a7c 100644
--- a/lldb/source/Commands/CommandObjectWatchpoint.cpp
+++ b/lldb/source/Commands/CommandObjectWatchpoint.cpp
@@ -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;
   }


        


More information about the lldb-commits mailing list