Skip to content

Commit fc20d17

Browse files
committed
Clean up. s/accumulator/root/g
1 parent 722b244 commit fc20d17

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/parse.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ function stringifyObjectKey(key) {
7171
*/
7272
function inspect(object) {
7373

74-
var accumulator = document.createDocumentFragment();
75-
_inspect(accumulator, object, 0, []);
76-
return accumulator;
74+
var root = document.createDocumentFragment();
75+
_inspect(root, object, 0, []);
76+
return root;
7777

7878
/**
7979
* @param {DocumentFragment} root

0 commit comments

Comments
 (0)