From 77160586d0c50c3d9d1d9dfd0869dbba41c81188 Mon Sep 17 00:00:00 2001 From: Dmitriy Mozgovoy Date: Wed, 25 Nov 2020 02:34:34 +0200 Subject: [PATCH] Fixed React example anchor; --- README.md | 4 ++-- jsdoc2md/README.hbs.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e927306..c52bd7b 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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( diff --git a/jsdoc2md/README.hbs.md b/jsdoc2md/README.hbs.md index f59782a..be4fab3 100644 --- a/jsdoc2md/README.hbs.md +++ b/jsdoc2md/README.hbs.md @@ -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) @@ -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(