diff options
author | Luboš Luňák <l.lunak@centrum.cz> | 2022-05-21 12:26:22 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@centrum.cz> | 2022-05-21 12:26:42 +0200 |
commit | 8ba1421432924a49ce884461f87970c6513a298f (patch) | |
tree | 69d2e19781af35fe80a2dac2e4949c32679d5156 /lldb/source/Commands/CommandObjectCommands.cpp | |
parent | f09a50cd974c55c2c20674077126b04b27697051 (diff) | |
download | llvm-8ba1421432924a49ce884461f87970c6513a298f.zip llvm-8ba1421432924a49ce884461f87970c6513a298f.tar.gz llvm-8ba1421432924a49ce884461f87970c6513a298f.tar.bz2 |
[lldb] fix 'command container' help text
Diffstat (limited to 'lldb/source/Commands/CommandObjectCommands.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectCommands.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp index 4ea8108..2334759 100644 --- a/lldb/source/Commands/CommandObjectCommands.cpp +++ b/lldb/source/Commands/CommandObjectCommands.cpp @@ -2099,8 +2099,8 @@ public: : CommandObjectMultiword( interpreter, "command container", "Commands for adding container commands to lldb. " - "Container commands are containers for other commands. You can" - "add nested container commands by specifying a command path, but " + "Container commands are containers for other commands. You can " + "add nested container commands by specifying a command path, " "but you can't add commands into the built-in command hierarchy.", "command container <subcommand> [<subcommand-options>]") { LoadSubCommand("add", CommandObjectSP(new CommandObjectCommandsContainerAdd( |