Skip to content

Commit

Permalink
Merge pull request #4595 from afshin/issue-4591
Browse files Browse the repository at this point in the history
Make sure commented JSON output has commas separating each JSON blob.
  • Loading branch information
ian-r-rose committed May 17, 2018
2 parents c4e6eb6 + ba2199d commit b05705e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/coreutils/src/settingregistry.ts
Expand Up @@ -1016,7 +1016,7 @@ namespace Private {
prefix(description || nondescript),
prefix(line(length)),
'',
keys.map(key => docstring(schema, key)).join('\n\n'),
keys.map(key => docstring(schema, key)).join(',\n\n'),
'}'
].join('\n');
}
Expand Down

0 comments on commit b05705e

Please sign in to comment.