style(xmb): add a space after ICU message cases

This commit is contained in:
Victor Berchet
2016-08-11 14:49:53 -07:00
committed by Vikram Subramanian
parent a5d2aadecb
commit 91dd672aa4
3 changed files with 3 additions and 4 deletions
@@ -89,7 +89,7 @@ class _Visitor implements i18n.Visitor {
const nodes = [new xml.Text(`{${icu.expression}, ${icu.type}, `)];
Object.keys(icu.cases).forEach((c: string) => {
nodes.push(new xml.Text(`${c} {`), ...icu.cases[c].visit(this), new xml.Text(`}`));
nodes.push(new xml.Text(`${c} {`), ...icu.cases[c].visit(this), new xml.Text(`} `));
});
nodes.push(new xml.Text(`}`));