Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AshanFernando committed May 27, 2014
1 parent 81a8916 commit 12e93ff
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ Example 1
```javascript

var threadInstance = new Thread();

var count = 1000000000;

threadInstance.start(count, function (count) {
var result = 0;
for (i = 1; i < count; i++) {
Expand All @@ -45,7 +43,6 @@ Example 2
```javascript

var count = 1000000000;

var threadInstance = new Thread({
data: count,
job: function (count) {
Expand All @@ -65,7 +62,6 @@ Example 2
/* Do something here to handle the error */
}
});

threadInstance.start();

```
Expand Down

0 comments on commit 12e93ff

Please sign in to comment.