Skip to content

Commit 6ff6b18

Browse files
committed
Remove indentation from long help
1 parent 2f91d3f commit 6ff6b18

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

lldb/source/Commands/CommandObjectLanguage.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ CommandObjectLanguage::CommandObjectLanguage(CommandInterpreter &interpreter)
2323
LanguageRuntime::InitializeCommands(this);
2424
SetHelpLong(
2525
R"(
26-
Language specific subcommands may be used directly (without the `language
27-
<language-name>` prefix), when stopped on a frame written in that
28-
language. For example, from a C++ frame, users may run `demangle`
29-
directly, instead of `language cplusplus demangle`.
30-
31-
Language specific subcommands are only available when the command name
32-
cannot be misinterpreted. Take the `demangle` command for example, if a
33-
Python command named `demangle-tree` were loaded, then the invocation
34-
`demangle` would run `demangle-tree`, not `language cplusplus demangle`.
26+
Language specific subcommands may be used directly (without the `language
27+
<language-name>` prefix), when stopped on a frame written in that language. For
28+
example, from a C++ frame, users may run `demangle` directly, instead of
29+
`language cplusplus demangle`.
30+
31+
Language specific subcommands are only available when the command name cannot be
32+
misinterpreted. Take the `demangle` command for example, if a Python command
33+
named `demangle-tree` were loaded, then the invocation `demangle` would run
34+
`demangle-tree`, not `language cplusplus demangle`.
3535
)");
3636
}
3737

0 commit comments

Comments
 (0)