Skip to content

Commit

Permalink
docs(general): use '===' replace '==' (#261)
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkasany authored Aug 17, 2023
1 parent 9f7eb46 commit f05cc4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/async/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ function launcher() {
running--;
if(items.length > 0) {
launcher();
} else if(running == 0) {
} else if(running === 0) {
final(results);
}
});
Expand Down

0 comments on commit f05cc4a

Please sign in to comment.