Skip to content

Commit cdc1816

Browse files
committed
[lldb] Fix typo in disassemble_options_line description
1 parent e5e05ec commit cdc1816

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 "
@@ -324,7 +324,7 @@ let Command = "disassemble" in {
324324
def disassemble_options_pc : Option<"pc", "p">, Group<5>,
325325
Desc<"Disassemble around the current pc.">;
326326
def disassemble_options_line : Option<"line", "l">, Group<6>,
327-
Desc<"Disassemble the current frame's current source line instructions if"
327+
Desc<"Disassemble the current frame's current source line instructions if "
328328
"there is debug line table information, else disassemble around the pc.">;
329329
def disassemble_options_address : Option<"address", "a">, Group<7>,
330330
Arg<"AddressOrExpression">,
@@ -751,7 +751,7 @@ let Command = "source list" in {
751751
def source_list_reverse : Option<"reverse", "r">, Group<4>, Desc<"Reverse the"
752752
" listing to look backwards from the last displayed block of source.">;
753753
def source_list_file_colon_line : Option<"joint-specifier", "y">, Group<5>,
754-
Arg<"FileLineColumn">, Completion<"SourceFile">,
754+
Arg<"FileLineColumn">, Completion<"SourceFile">,
755755
Desc<"A specifier in the form filename:line[:column] from which to display"
756756
" source.">;
757757
}

0 commit comments

Comments
 (0)