From 8cbabf82b8ff938907ad6fc86327706668544c89 Mon Sep 17 00:00:00 2001 From: Craig Roddin Date: Mon, 7 Oct 2013 12:33:10 -0600 Subject: Fixed spelling of trig function "sin" --- lua.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lua.html.markdown') diff --git a/lua.html.markdown b/lua.html.markdown index 369de908..27ce105b 100644 --- a/lua.html.markdown +++ b/lua.html.markdown @@ -125,7 +125,7 @@ f = function (x) return x * x end -- And so are these: 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 -- to g in the function body won't work as expected. local g; g = function (x) return math.sin(x) end -- cgit v1.2.3