diff --git a/README.md b/README.md
index ca4bec29..66c55e8f 100644
--- a/README.md
+++ b/README.md
@@ -117,6 +117,7 @@ Let's create an input box that changes the content of a textbox in real time.
First we import `choo` and create a new instance:
```js
const choo = require('choo')
+const html = require('choo/html')
const app = choo()
```
@@ -135,7 +136,7 @@ Then we create a new view. It has an `h1` tag which displays the current title,
and an `` field which sends the current value of the text box on every
input:
```js
-const mainView = (params, state, send) => choo.view`
+const mainView = (params, state, send) => html`
@@ -477,10 +479,11 @@ links they comprise most of what can be done on web pages.
```js
const choo = require('choo')
const http = require('choo/http')
+const html = require('choo/html')
const app = choo()
function view (params, state, send) {
- return choo.view`
+ return html`