From b6e781cab55b04683dcf5d635d2fce80ece5cb12 Mon Sep 17 00:00:00 2001 From: Marcos Caceres Date: Mon, 4 Jul 2016 14:14:10 +1000 Subject: [PATCH] fix(example): fixed typo --- example/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/index.html b/example/index.html index 69752e1..985c5f2 100644 --- a/example/index.html +++ b/example/index.html @@ -7,7 +7,7 @@

Async example

 var getText = async(function*(url){
   const response = yield fetch(url);
-  const text = yield reponse.text();
+  const text = yield response.text();
   return text;
 })
 getText("./")