diff --git a/README.md b/README.md index a88bfbd..071d469 100644 --- a/README.md +++ b/README.md @@ -344,7 +344,7 @@ Some additional features include `export default` and `export *`: // lib/mathplusplus.js export * from "lib/math"; export var e = 2.71828182846; -export default function(x) { +export default function ln(x) { return Math.log(x); } ```