Skip to content

Commit 2689a2e

Browse files
Fix typo
1 parent 6d58425 commit 2689a2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/babel-plugin-htm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Like `pragma=false` but converts all inline text to objects, resulting in the sa
4949
html`<div id="foo">hello ${you}</div>`
5050
// output:
5151
{ type: 1, tag:"div", props:{ id: "foo" }, text: null, children:[
52-
{ type: 3, tag: null, props: null, text "hello ", children: null },
52+
{ type: 3, tag: null, props: null, text: "hello ", children: null },
5353
you
5454
] }
5555
```

0 commit comments

Comments
 (0)