Use sane switch style :)

This commit is contained in:
Bryan Ashby 2016-08-03 22:43:06 -06:00
parent f024527db1
commit 33f0553ea9
11 changed files with 223 additions and 222 deletions

View file

@ -205,7 +205,7 @@ function wordWrapText(text, options) {
switch(m[0].charAt(0)) {
case ' ' :
word += m[0];
break;
break;
case '\t' :
//
@ -218,7 +218,7 @@ function wordWrapText(text, options) {
} else {
word += m[0];
}
break;
break;
}
addWord();