Skip to content

Commit 4494c54

Browse files
authored
[lldb] Fix typos in various help messages. (#109851)
1 parent 3cfd0c0 commit 4494c54

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

lldb/source/Commands/CommandObjectFrame.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1223,7 +1223,7 @@ CommandObjectMultiwordFrame::CommandObjectMultiwordFrame(
12231223
CommandInterpreter &interpreter)
12241224
: CommandObjectMultiword(interpreter, "frame",
12251225
"Commands for selecting and "
1226-
"examing the current "
1226+
"examining the current "
12271227
"thread's stack frames.",
12281228
"frame <subcommand> [<subcommand-options>]") {
12291229
LoadSubCommand("diagnose",

lldb/source/Commands/CommandObjectProcess.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1420,7 +1420,7 @@ class CommandObjectProcessStatus : public CommandObjectParsed {
14201420

14211421
PlatformSP platform_sp = process->GetTarget().GetPlatform();
14221422
if (!platform_sp) {
1423-
result.AppendError("Couldn'retrieve the target's platform");
1423+
result.AppendError("Couldn't retrieve the target's platform");
14241424
return;
14251425
}
14261426

lldb/source/Commands/CommandObjectScripting.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ CommandObjectMultiwordScripting::CommandObjectMultiwordScripting(
254254
CommandInterpreter &interpreter)
255255
: CommandObjectMultiword(
256256
interpreter, "scripting",
257-
"Commands for operating on the scripting functionnalities.",
257+
"Commands for operating on the scripting functionalities.",
258258
"scripting <subcommand> [<subcommand-options>]") {
259259
LoadSubCommand("run",
260260
CommandObjectSP(new CommandObjectScriptingRun(interpreter)));

lldb/source/Commands/Options.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1199,7 +1199,7 @@ let Command = "thread trace dump instructions" in {
11991199
def thread_trace_dump_instruction_only_events : Option<"only-events", "E">,
12001200
Group<1>,
12011201
Desc<"Dump only the events that happened during the execution of the "
1202-
"target. No instrutions are dumped.">;
1202+
"target. No instructions are dumped.">;
12031203
def thread_trace_dump_instructions_continue: Option<"continue", "C">,
12041204
Group<1>,
12051205
Desc<"Continue dumping instructions right where the previous invocation of "

lldb/source/Interpreter/CommandInterpreter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,7 @@ void CommandInterpreter::LoadCommandDictionary() {
797797
new CommandObjectRegexCommand(
798798
*this, "gdb-remote",
799799
"Connect to a process via remote GDB server.\n"
800-
"If no host is specifed, localhost is assumed.\n"
800+
"If no host is specified, localhost is assumed.\n"
801801
"gdb-remote is an abbreviation for 'process connect --plugin "
802802
"gdb-remote connect://<hostname>:<port>'\n",
803803
"gdb-remote [<hostname>:]<portnum>", 0, false));

lldb/source/Target/TargetProperties.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ let Definition = "process" in {
235235
def DisableLangRuntimeUnwindPlans: Property<"disable-language-runtime-unwindplans", "Boolean">,
236236
Global,
237237
DefaultFalse,
238-
Desc<"If true, language runtime augmented/overidden backtraces will not be used when printing a stack trace.">;
238+
Desc<"If true, language runtime augmented/overridden backtraces will not be used when printing a stack trace.">;
239239
def DetachKeepsStopped: Property<"detach-keeps-stopped", "Boolean">,
240240
Global,
241241
DefaultFalse,

0 commit comments

Comments
 (0)