tests-always-included / pretty-js

Beautify and pretty print JavaScript and JSON
Other
21 stars 4 forks source link

Beautifying comments is removing a space #4

Closed fidian closed 10 years ago

fidian commented 10 years ago

Before:

/**
 * Test comment
 *     Five spaces before this line
 */

After:

/**
 * Test comment
 *    Five spaces before this line
 */

The second one only has 4 spaces.

fidian commented 10 years ago

Found and fixed.