diff --git a/.verb.md b/.verb.md
index 1702082..c8231ff 100644
--- a/.verb.md
+++ b/.verb.md
@@ -39,7 +39,6 @@ const tree = h('h1.big#hero.header', 'Hello World')
const html = toHtml(tree)
console.log(html)
// => '
'
-
```
Or, using the JSX syntax and adding the [JSX Pragma](https://jasonformat.com/wtf-is-jsx/) somewhere at the top
@@ -50,10 +49,9 @@ const h = require('mich-h')
const toHtml = require('{%= name %}')
const hi = 'Hello World'
-const tree = {hi}
+const tree = {hi}
-const html = toHtml(tree)
-console.log(html)
+console.log(toHtml(tree))
// => ''
```
diff --git a/README.md b/README.md
index 7902cd2..560f64e 100644
--- a/README.md
+++ b/README.md
@@ -49,7 +49,6 @@ const tree = h('h1.big#hero.header', 'Hello World')
const html = toHtml(tree)
console.log(html)
// => ''
-
```
Or, using the JSX syntax and adding the [JSX Pragma](https://jasonformat.com/wtf-is-jsx/) somewhere at the top
@@ -60,10 +59,9 @@ const h = require('mich-h')
const toHtml = require('mich-to-html')
const hi = 'Hello World'
-const tree = {hi}
+const tree = {hi}
-const html = toHtml(tree)
-console.log(html)
+console.log(toHtml(tree))
// => ''
```