Skip to content

Commit 2d0b083

Browse files
authored
Merge pull request #1965 from JDevlieghere/🍒/bastille/cdc18163cd1449c3a1c20e65a4d95a35ba3f6c23
[lldb] Fix typo in disassemble_options_line description
2 parents feab006 + cc23662 commit 2d0b083

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lldb/source/Commands/Options.td

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ let Command = "breakpoint set" in {
202202
Desc<"Move breakpoints to nearest code. If not set the "
203203
"target.move-to-nearest-codesetting is used.">;
204204
def breakpoint_set_file_colon_line : Option<"joint-specifier", "y">, Group<12>, Arg<"FileLineColumn">,
205-
Required, Completion<"SourceFile">,
206-
Desc<"A specifier in the form filename:line[:column] for setting file & line breakpoints.">;
205+
Required, Completion<"SourceFile">,
206+
Desc<"A specifier in the form filename:line[:column] for setting file & line breakpoints.">;
207207
/* Don't add this option till it actually does something useful...
208208
def breakpoint_set_exception_typename : Option<"exception-typename", "O">,
209209
Arg<"TypeName">, Desc<"The breakpoint will only stop if an "
@@ -327,7 +327,7 @@ let Command = "disassemble" in {
327327
def disassemble_options_pc : Option<"pc", "p">, Group<5>,
328328
Desc<"Disassemble around the current pc.">;
329329
def disassemble_options_line : Option<"line", "l">, Group<6>,
330-
Desc<"Disassemble the current frame's current source line instructions if"
330+
Desc<"Disassemble the current frame's current source line instructions if "
331331
"there is debug line table information, else disassemble around the pc.">;
332332
def disassemble_options_address : Option<"address", "a">, Group<7>,
333333
Arg<"AddressOrExpression">,
@@ -762,7 +762,7 @@ let Command = "source list" in {
762762
def source_list_reverse : Option<"reverse", "r">, Group<4>, Desc<"Reverse the"
763763
" listing to look backwards from the last displayed block of source.">;
764764
def source_list_file_colon_line : Option<"joint-specifier", "y">, Group<5>,
765-
Arg<"FileLineColumn">, Completion<"SourceFile">,
765+
Arg<"FileLineColumn">, Completion<"SourceFile">,
766766
Desc<"A specifier in the form filename:line[:column] from which to display"
767767
" source.">;
768768
}

0 commit comments

Comments
 (0)