Skip to content

Commit

Permalink
Fixed React example anchor;
Browse files Browse the repository at this point in the history
  • Loading branch information
DigitalBrainJS committed Nov 25, 2020
1 parent 69be457 commit 7716058
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- [concurrent limitation](#concurrency-limitation)
- [abortable fetch with timeout](#abortable-fetch-with-timeout)
- [wrapping axios request](#wrapping-axios-request)
- [**using with React**]()
- [**using with React**](#using-with-react)
- [Signals handling](#signals-handling)
- [Using generators](#using-generators-as-an-alternative-of-ecma-async-functions)
- [Related projects](#related-projects)
Expand Down Expand Up @@ -378,7 +378,7 @@ const chain= new CPromise((resolve, reject, scope)=>{
if (type === 'inc') { // ignore other signal types
console.log(`Signal ${type} handled`);
resolve(data.x + 1);
return true; // we accepted this signal, we should return `true` to stop the propagation
return true; // we have accepted this signal, so we should return `true` to stop the propagation
}
});
}).then(
Expand Down
4 changes: 2 additions & 2 deletions jsdoc2md/README.hbs.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- [concurrent limitation](#concurrency-limitation)
- [abortable fetch with timeout](#abortable-fetch-with-timeout)
- [wrapping axios request](#wrapping-axios-request)
- [**using with React**]()
- [**using with React**](#using-with-react)
- [Signals handling](#signals-handling)
- [Using generators](#using-generators-as-an-alternative-of-ecma-async-functions)
- [Related projects](#related-projects)
Expand Down Expand Up @@ -378,7 +378,7 @@ const chain= new CPromise((resolve, reject, scope)=>{
if (type === 'inc') { // ignore other signal types
console.log(`Signal ${type} handled`);
resolve(data.x + 1);
return true; // we accepted this signal, we should return `true` to stop the propagation
return true; // we have accepted this signal, so we should return `true` to stop the propagation
}
});
}).then(
Expand Down

0 comments on commit 7716058

Please sign in to comment.