From 02971c65880d1e56f5d9ee6c2128665323f510fd Mon Sep 17 00:00:00 2001 From: ngradwohl Date: Tue, 23 Jul 2019 08:00:07 +0200 Subject: [PATCH] rename ln function to log --- desktop/sources/scripts/library.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/sources/scripts/library.js b/desktop/sources/scripts/library.js index 2f03568..bb1e396 100644 --- a/desktop/sources/scripts/library.js +++ b/desktop/sources/scripts/library.js @@ -226,7 +226,7 @@ function Library (ronin) { this.cos = Math.cos - this.ln = Math.log // caclulates on the base of e + this.log = Math.log // caclulates on the base of e this.pow = (a, b) => { // calculates a^b return Math.pow(a, b)