aboutsummaryrefslogtreecommitdiffhomepage
path: root/modules/lua
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2011-09-08 16:51:39 -0400
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2011-09-08 16:51:39 -0400
commitd792c28a2dfd519b24b867971e302dd96dd6cee8 (patch)
tree41e1afe257be4f81a41e7bda8fa70f453f5aec3b /modules/lua
parent770164f95c2081b7c02f8d8934469f11da331ea7 (diff)
Fixed error in Lua apidoc for math.huge; modules/lua/lua.luadoc
Diffstat (limited to 'modules/lua')
-rw-r--r--modules/lua/lua.luadoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/lua/lua.luadoc b/modules/lua/lua.luadoc
index d43950b1..bee093be 100644
--- a/modules/lua/lua.luadoc
+++ b/modules/lua/lua.luadoc
@@ -640,7 +640,7 @@ function math.fmod(x, y) end
-- absolute value of `m` is in the range *[0.5, 1)* (or zero when `x` is zero).
function math.frexp(x) end
--- * `math.HUGE_VAL`: The value `HUGE_VAL`, a value larger than or equal to any
+-- * `math.huge`: The value `HUGE_VAL`, a value larger than or equal to any
-- other numerical value.
---