mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
add proper spacing to optparse by default
This commit is contained in:
parent
44398d044f
commit
965034e16e
4 changed files with 4 additions and 4 deletions
|
@ -61,7 +61,7 @@
|
|||
let_part = rule.letter ? rule.letter + ', ' : ' ';
|
||||
lines.push(' ' + let_part + rule.flag + spaces + rule.description);
|
||||
}
|
||||
return lines.join('\n');
|
||||
return '\n' + lines.join('\n') + '\n';
|
||||
};
|
||||
return OptionParser;
|
||||
}).call(this);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue