git.delta.rocks / jrsonnet / refs/commits / 6c1a2fa6d186

difftreelog

docs fix `DebugOpts`

progrm_jarvis2020-08-03parent: #656c8fd.patch.diff
in: master

1 file changed

modifiedcmds/jrsonnet/src/main.rsdiffbeforeafterboth
10#[derive(Clap)]10#[derive(Clap)]
11// #[clap(help_heading = "DEBUG")]11// #[clap(help_heading = "DEBUG")]
12struct DebugOpts {12struct DebugOpts {
13 /// Required OS stack size.
13 /// Required OS stack size, probally you shouldn't change it, unless jrsonnet is failing with stack overflow14 /// This shouldn't be changed unless jrsonnet is failing with stack overflow error.
14 #[clap(long, name = "size")]15 #[clap(long, name = "size")]
15 pub os_stack: Option<usize>,16 pub os_stack: Option<usize>,
16}17}