Skip to content

Commit 18b8312

Browse files
committed
Fixed typos in README
1 parent 2967a6b commit 18b8312

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ one flow is to print to log, other flows are to converting.
718718
// chain-concurrent.js
719719
var text = httpGet(url.parse("http://example.biz")).then(function (res) {
720720
return httpGet(url.parse(res.headers["location"]));
721-
}).then(loadBody);.fail(function (error) {
721+
}).then(loadBody).fail(function (error) {
722722
return "Not Found";
723723
});
724724

@@ -807,9 +807,9 @@ If error reached to the ``done()``, you could think it just a *programming bug*
807807
promise.fin(function () {
808808
console.log("resolved");
809809
}).then(function (value) {
810-
console.log("success " + value);
810+
console.log("success " + value);
811811
}, function (error) {
812-
console.log("failure " + error);
812+
console.log("failure " + error);
813813
});
814814
```
815815

0 commit comments

Comments
 (0)