Fixed spelling of trig function "sin"

This commit is contained in:
Craig Roddin 2013-10-07 12:33:10 -06:00
parent 24514c9de1
commit 8cbabf82b8

View File

@ -125,7 +125,7 @@ f = function (x) return x * x end
-- And so are these: -- And so are these:
local function g(x) return math.sin(x) end local function g(x) return math.sin(x) end
local g = function(x) return math.xin(x) end local g = function(x) return math.sin(x) end
-- Equivalent to local function g(x)..., except referring -- Equivalent to local function g(x)..., except referring
-- to g in the function body won't work as expected. -- to g in the function body won't work as expected.
local g; g = function (x) return math.sin(x) end local g; g = function (x) return math.sin(x) end