Skip to content

Commit e07c092

Browse files
hawkinswJDevlieghere
authored andcommitted
[lldb] Update online help text (consistency, typo)
Update the online help text for breakpoint set to be consistent with respect to the spelling of Objective-C and fix a few space-related typos. Differential revision: https://reviews.llvm.org/D124338
1 parent 494d86d commit e07c092

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lldb/source/Commands/Options.td

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ let Command = "breakpoint modify" in {
9595
def breakpoint_modify_command : Option<"command", "C">, Group<4>,
9696
Arg<"Command">,
9797
Desc<"A command to run when the breakpoint is hit, can be provided more "
98-
"than once, the commands will get run in order left to right.">;
98+
"than once, the commands will be run in left-to-right order.">;
9999
}
100100

101101
let Command = "breakpoint dummy" in {
@@ -132,8 +132,8 @@ let Command = "breakpoint set" in {
132132
"no matter where the binary eventually loads. Alternately, if you also "
133133
"specify the module - with the -s option - then the address will be "
134134
"treated as a file address in that module, and resolved accordingly. "
135-
"Again, this will allow lldb to track that offset on subsequent reloads. "
136-
" The module need not have been loaded at the time you specify this "
135+
"Again, this will allow lldb to track that offset on subsequent reloads. "
136+
"The module need not have been loaded at the time you specify this "
137137
"breakpoint, and will get resolved when the module is loaded.">;
138138
def breakpoint_set_name : Option<"name", "n">, Group<3>, Arg<"FunctionName">,
139139
Completion<"Symbol">, Required,
@@ -152,8 +152,8 @@ let Command = "breakpoint set" in {
152152
" to make one breakpoint for multiple names.">;
153153
def breakpoint_set_selector : Option<"selector", "S">, Group<5>,
154154
Arg<"Selector">, Required,
155-
Desc<"Set the breakpoint by ObjC selector name. Can be repeated multiple "
156-
"times to make one breakpoint for multiple Selectors.">;
155+
Desc<"Set the breakpoint by Objective-C selector name. Can be repeated "
156+
"multiple times to make one breakpoint for multiple Selectors.">;
157157
def breakpoint_set_method : Option<"method", "M">, Group<6>, Arg<"Method">,
158158
Required, Desc<"Set the breakpoint by C++ method names. Can be repeated "
159159
"multiple times to make one breakpoint for multiple methods.">;

0 commit comments

Comments
 (0)