1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-22 14:23:37 +02:00

[lua/en] Fix typo

This commit is contained in:
Saurabh Sandav
2015-10-22 18:58:23 +05:30
parent 1c0eee17a6
commit 5091072873

View File

@@ -190,7 +190,7 @@ end
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
-- A table can have a metatable that gives the table operator-overloadish -- A table can have a metatable that gives the table operator-overloadish
-- behavior. Later we'll see how metatables support js-prototypey behavior. -- behavior. Later we'll see how metatables support js-prototypey behaviour.
f1 = {a = 1, b = 2} -- Represents the fraction a/b. f1 = {a = 1, b = 2} -- Represents the fraction a/b.
f2 = {a = 2, b = 3} f2 = {a = 2, b = 3}