From ee26bc04c561b05d82b0e2bcb01e1c282c1e31f6 Mon Sep 17 00:00:00 2001 From: Ad5001 Date: Sun, 23 Oct 2022 23:26:34 +0200 Subject: [PATCH] Fixing syntax error. --- .../qml/eu/ad5001/LogarithmPlotter/js/parsing/polyfill.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/js/parsing/polyfill.js b/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/js/parsing/polyfill.js index 1638b28..9f750d8 100644 --- a/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/js/parsing/polyfill.js +++ b/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/js/parsing/polyfill.js @@ -83,7 +83,7 @@ function gamma(n) { --n let x = GAMMA_P[0] - for (let i = 1 i < GAMMA_P.length ++i) { + for (let i = 1; i < GAMMA_P.length; ++i) { x += GAMMA_P[i] / (n + i) }