Skip to content

Commit ad4a6b0

Browse files
author
MaXwell Falstein
authored
Change wording and make corrections
1 parent 01e97b5 commit ad4a6b0

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ _Easy Parallel Computing with Javascript_
1212
1313
> **Update: September 2016**: New forces are put in place to drive the code forward.
1414
15-
16-
17-
Parallel.js is a library for to make parallel computing in Javascript simple. It works in Node.js and in the Web Browser.
18-
Parallel takes advantage of Web Workers for the web, and child processes for Node.
15+
Parallel.js is a library making JavScript parallel computing simple.
16+
Parallel.js works in Node.js and in the web browser for client side, server side or a mixture of client and server side compute.
17+
Parallel.js takes advantage of Web Workers for the web, and child processes for Node.
1918

2019
# Installation
20+
2121
You can download the raw javascript file [here](https://raw.github.com/adambom/parallel.js/master/lib/parallel.js)
2222

2323
Just include it via a script tag in your HTML page
@@ -31,6 +31,7 @@ npm install paralleljs --save
3131
# Usage
3232

3333
#### `Parallel(data, opts)`
34+
3435
This is the constructor. Use it to new up any parallel jobs. The constructor takes an array of data you want to
3536
operate on. This data will be held in memory until you finish your job, and can be accessed via the `.data` attribute
3637
of your job.
@@ -46,6 +47,7 @@ operations on the provided data.
4647
* `synchronous` (optional): If webworkers are not available, whether or not to fall back to synchronous processing using `setTimeout`. Defaults to `true`.
4748

4849
*Example*
50+
4951
```js
5052
const p = new Parallel([1, 2, 3, 4, 5]);
5153

0 commit comments

Comments
 (0)