Skip to content

Commit 877867e

Browse files
authored
Merge branch 'master' into terse-option
2 parents 158b2d7 + e241d3a commit 877867e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/build.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ const PROP_APPEND = MODE_PROP_APPEND;
1919
// convenient to analyze and transform (e.g. Babel plugins).
2020
// For example:
2121
// treeify(
22-
// build'<div href="1${a}" ...${b}><${x} /></div>`,
22+
// build`<div href="1${a}" ...${b}><${x} /></div>`,
2323
// [X, Y, Z]
2424
// )
2525
// returns:
2626
// {
2727
// tag: 'div',
28-
// props: [ { href: ["1", X] }, Y ],
28+
// props: [ { href: ["1", X] }, Y ],
2929
// children: [ { tag: Z, props: [], children: [] } ]
3030
// }
3131
export const treeify = (built, fields) => {

0 commit comments

Comments
 (0)