1
0
Fork 0
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:
Jeremy Ashkenas 2010-03-04 22:59:03 -05:00
parent 44398d044f
commit 965034e16e
4 changed files with 4 additions and 4 deletions

View file

@ -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);