Skip to content

Commit

Permalink
very minor update to readme. (#2)
Browse files Browse the repository at this point in the history
The event argument was missing.
  • Loading branch information
Chandrasekar authored and deebloo committed Dec 5, 2018
1 parent 60368dd commit 6f1c300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -50,7 +50,7 @@ Filter large data sets without blocking the UI thread and without making a full

```JS
// filter-worker.js
self.onmessage = function () {
self.onmessage = function (e) {
self.postMessage(e.data.filter(function () {
return e.flagged;
}));
Expand Down

0 comments on commit 6f1c300

Please sign in to comment.