From a8c485e8031c4aec29a41f88e16f02a18bcd4627 Mon Sep 17 00:00:00 2001 From: Sim Saens Date: Tue, 14 Jul 2026 22:23:23 +0930 Subject: [PATCH] Removed deprecated math.log10 function --- docs/source/api/lua.rst | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/docs/source/api/lua.rst b/docs/source/api/lua.rst index c04da67..035e348 100644 --- a/docs/source/api/lua.rst +++ b/docs/source/api/lua.rst @@ -884,18 +884,6 @@ Math math.log( value ) -.. lua:function:: math.log10( value ) - - This function returns the base-10 logarithm of `value` - - :param value: int or float, compute the base-10 logarithm of this value - :return: The base-10 logarithm of value - :syntax: - - .. code-block:: lua - - math.log10( value ) - .. lua:function:: math.max( value, ... ) This function returns maximum value among its arguments.