瀏覽代碼

Make sure commented JSON output has commas separating each JSON blob.

Afshin Darian 7 年之前
父節點
當前提交
ba2199de97
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/coreutils/src/settingregistry.ts

+ 1 - 1
packages/coreutils/src/settingregistry.ts

@@ -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');
   }