Skip to content

Commit

Permalink
Fixes stray ; in var declarations, plus some cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
andyearnshaw committed May 15, 2014
1 parent 93c4235 commit ade127d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/Ldml2Json.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var
jsonpExp = /"(?!default)([\w$][\w\d$]+)":/g,

// Path to CLDR root
cldr = process.argv[2];
cldr = process.argv[2],

// Paths to required classes in the CLDR /tools/java folder
jPath = cldr + '/tools/java/',
Expand Down Expand Up @@ -108,7 +108,8 @@ if (cldr) {
}
else
console.log('\n');
cldrToIntl();

cldrToIntl();
});
}
else {
Expand Down

0 comments on commit ade127d

Please sign in to comment.