diff options
author | Ryan Mansfield <ryan_mansfield@apple.com> | 2024-09-24 19:48:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 16:48:27 -0700 |
commit | 4494c54326fe33d19c14df851188f867b14ded2a (patch) | |
tree | 0de7ba518bd1f9f9518888b746ee4be30020596f /lldb/source/Commands/CommandObjectProcess.cpp | |
parent | 3cfd0c0d36975504099034ce11f4df07c5a7eba7 (diff) | |
download | llvm-4494c54326fe33d19c14df851188f867b14ded2a.zip llvm-4494c54326fe33d19c14df851188f867b14ded2a.tar.gz llvm-4494c54326fe33d19c14df851188f867b14ded2a.tar.bz2 |
[lldb] Fix typos in various help messages. (#109851)
Diffstat (limited to 'lldb/source/Commands/CommandObjectProcess.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectProcess.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp index 5b0f4f6..e7c7d07 100644 --- a/lldb/source/Commands/CommandObjectProcess.cpp +++ b/lldb/source/Commands/CommandObjectProcess.cpp @@ -1420,7 +1420,7 @@ protected: PlatformSP platform_sp = process->GetTarget().GetPlatform(); if (!platform_sp) { - result.AppendError("Couldn'retrieve the target's platform"); + result.AppendError("Couldn't retrieve the target's platform"); return; } |