aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectWatchpoint.cpp
diff options
context:
space:
mode:
authorRaphael Isemann <teemperor@gmail.com>2020-04-07 16:11:16 +0200
committerRaphael Isemann <teemperor@gmail.com>2020-04-07 16:11:32 +0200
commit95054aeb07061dbfd6575c10673b9563430de64a (patch)
tree8335d4b811c0756ecd049b253ce4e8828f9a3b71 /lldb/source/Commands/CommandObjectWatchpoint.cpp
parent94317878d8267de23a1a23dfa3d92f9143c433ca (diff)
downloadllvm-95054aeb07061dbfd6575c10673b9563430de64a.zip
llvm-95054aeb07061dbfd6575c10673b9563430de64a.tar.gz
llvm-95054aeb07061dbfd6575c10673b9563430de64a.tar.bz2
[lldb][NFC] Fix typo in 'watchpoint delete' error message
Diffstat (limited to 'lldb/source/Commands/CommandObjectWatchpoint.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectWatchpoint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectWatchpoint.cpp b/lldb/source/Commands/CommandObjectWatchpoint.cpp
index 63baae8..ce46629 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;
}