Skip to content

Commit

Permalink
fix(example): fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoscaceres committed Jul 4, 2016
1 parent 7bd3eeb commit b6e781c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/index.html
Expand Up @@ -7,7 +7,7 @@ <h1>Async example</h1>
<pre>
var getText = async(function*(url){
const response = yield fetch(url);
const text = yield reponse.text();
const text = yield response.text();
return text;
})
getText("./")
Expand Down

0 comments on commit b6e781c

Please sign in to comment.