diff --git a/README.md b/README.md index dcf40c1..21ae12f 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ function log() { console.log(arguments); } p.require(factorial) // Approximate e^10 -p.map((n => Math.pow(10, n)).reduce(add).then(log); +p.map(n => Math.pow(10, n)).reduce(add).then(log); ``` ---