fix command descriptions

This commit is contained in:
Dmitry Sharshakov 2021-10-09 16:06:32 +03:00
parent 48cb81eff1
commit bc0084d071
No known key found for this signature in database
GPG key ID: 471FD32E15FD8473

View file

@ -2423,21 +2423,21 @@ fn debug_remote(
},
TypableCommand {
name: "debug-start",
alias: Some("dbg"),
aliases: &["dbg"],
doc: "Start a debug session from a given template with given parameters.",
fun: debug_start,
completer: None,
},
TypableCommand {
name: "debug-remote",
alias: Some("dbg-tcp"),
aliases: &["dbg-tcp"],
doc: "Connect to a debug adapter by TCP address and start a debugging session from a given template with given parameters.",
fun: debug_remote,
completer: None,
},
TypableCommand {
name: "debug-eval",
alias: None,
aliases: &[],
doc: "Evaluate expression in current debug context.",
fun: debug_eval,
completer: None,