diff --git a/tools/jsonpath-tool.html b/tools/jsonpath-tool.html index abe50410f..17a5877dd 100644 --- a/tools/jsonpath-tool.html +++ b/tools/jsonpath-tool.html @@ -43,8 +43,8 @@ main {

uBO-flavored JSONPath tool

- - + +
 
@@ -65,7 +65,7 @@ main { } const out = []; for ( const i of a ) { - out.push(`[ ${i.map(j => JSON.stringify(j)).join(' ,')} ]`); + out.push(`[ ${i.map(j => JSON.stringify(j)).join(', ')} ]`); } return out.join('\n'); }