diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2017-07-21 07:08:20 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2017-07-21 07:08:20 +0000 |
commit | 2b13913b12fe35c8ad0abee8e713ef3942222795 (patch) | |
tree | a8f50bd6bb2d7137fa3f637480154ef7d66c6aec /lldb/source/Commands/CommandObjectPlatform.cpp | |
parent | 018103d34eb3548772437a29abbe3140c9774c8a (diff) | |
download | bcm5719-llvm-2b13913b12fe35c8ad0abee8e713ef3942222795.tar.gz bcm5719-llvm-2b13913b12fe35c8ad0abee8e713ef3942222795.zip |
Fix typo in error message in 'platform status'.
llvm-svn: 308716
Diffstat (limited to 'lldb/source/Commands/CommandObjectPlatform.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectPlatform.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectPlatform.cpp b/lldb/source/Commands/CommandObjectPlatform.cpp index 5fa851f584a..8003ae88ac0 100644 --- a/lldb/source/Commands/CommandObjectPlatform.cpp +++ b/lldb/source/Commands/CommandObjectPlatform.cpp @@ -302,7 +302,7 @@ protected: platform_sp->GetStatus(ostrm); result.SetStatus(eReturnStatusSuccessFinishResult); } else { - result.AppendError("no platform us currently selected\n"); + result.AppendError("no platform is currently selected\n"); result.SetStatus(eReturnStatusFailed); } return result.Succeeded(); |