diff --git a/README.md b/README.md
index e3fb64d..ac92891 100644
--- a/README.md
+++ b/README.md
@@ -118,6 +118,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()
```
@@ -136,7 +137,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`
@@ -478,10 +480,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`