diff options
Diffstat (limited to 'lua.html.markdown')
-rw-r--r-- | lua.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.html.markdown b/lua.html.markdown index be9f3141..2cd4d7bb 100644 --- a/lua.html.markdown +++ b/lua.html.markdown @@ -1,5 +1,5 @@ --- -language: lua +language: Lua contributors: - ["Tyler Neylon", "http://tylerneylon.com/"] filename: learnlua.lua @@ -190,7 +190,7 @@ end -------------------------------------------------------------------------------- -- A table can have a metatable that gives the table operator-overloadish --- behavior. Later we'll see how metatables support js-prototypey behavior. +-- behaviour. Later we'll see how metatables support js-prototypey behaviour. f1 = {a = 1, b = 2} -- Represents the fraction a/b. f2 = {a = 2, b = 3} |