From 70396fa0f5974e163139491cf47fc883e6615344 Mon Sep 17 00:00:00 2001 From: Manuel Rubio <2188638+manuel-rubio@users.noreply.github.com> Date: Sun, 28 Jan 2024 02:30:47 +0100 Subject: [PATCH] Update ephp_lib_math.erl Closes #8 --- src/ephp_lib_math.erl | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ephp_lib_math.erl b/src/ephp_lib_math.erl index 27f542a..ea630a9 100644 --- a/src/ephp_lib_math.erl +++ b/src/ephp_lib_math.erl @@ -142,7 +142,6 @@ php_atan(_Context, _Line, {_, Number}) -> -spec php_atanh(ephp:context_id(), line(), {any(), number()}) -> float(). php_atanh(_Context, _Line, {_, Number}) -> - % math:atanh(Number); % FIXME: the implementation is not reliable 1 / 2 * math:log((1 + Number) / (1 - Number)). -spec php_atan2(ephp:context_id(), line(), {any(), number()}, {any(), number()}) ->