Skip to content

Commit 7c83f98

Browse files
committed
Update mongotypes.js
1 parent 26702f6 commit 7c83f98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snippets/mongocompat/mongotypes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ tojsonObject = function(x, indent, nolint, depth) {
653653
if (typeof DBCollection != 'undefined' && val == DBCollection.prototype)
654654
continue;
655655

656-
fieldStrings.push(indent + "\"" + k + "\" : " + tojson(val, indent, nolint, depth + 1));
656+
fieldStrings.push(indent + k + ": " + tojson(val, indent, nolint, depth + 1));
657657
}
658658

659659
if (fieldStrings.length > 0) {

0 commit comments

Comments
 (0)