Skip to content

Commit

Permalink
Update descriptions and text which correctly define the package as ru…
Browse files Browse the repository at this point in the history
…nning tasks concurrently
  • Loading branch information
Samrith Shankar committed Dec 16, 2018
1 parent 3e623da commit cd0a151
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ runner.addMultiple(generateTasks());

In JavaScript, it gets very difficult for tasks to talk to each other. A lot of times, we need to maintain a map of running tasks and call a function which will update the value and call the next task.

**Concurrent Tasks** is a JavaScript module, which runs multiple tasks in parallel until all the tasks are complete. It needs a way to figure out when a particular task has been completed.
**Concurrent Tasks** is a JavaScript module, which runs multiple tasks concurrently until all the tasks are complete. It needs a way to figure out when a particular task has been completed.

### Solution

Expand Down
4 changes: 2 additions & 2 deletions demo/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ <h1 class="main-title">
</a>
</h1>
<p class="short-description">
A simple task runner which will run tasks in parallel while
maintaining concurrency limits.
A simple task runner which will run tasks concurrently while
maintaining limits.
</p>
</div>

Expand Down
7 changes: 2 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "concurrent-tasks",
"version": "1.0.1",
"description": "A simple task runner which will run tasks in parallel while maintaining limits.",
"description": "A simple task runner which will run tasks concurrently while maintaining limits.",
"author": "Samrith Shankar",
"license": "MIT",
"homepage": "https://concurrent-tasks.js.org",
Expand All @@ -24,7 +24,6 @@
"nwb": "0.23.x"
},
"keywords": [
"parallel",
"concurrent",
"tasks",
"processes",
Expand All @@ -35,9 +34,7 @@
"process",
"run",
"concurrent tasks",
"parallel tasks",
"node parallel tasks",
"react parallel task",
"react concurrent task",
"priority",
"queue",
"priority queue",
Expand Down

0 comments on commit cd0a151

Please sign in to comment.