Fix comment

This commit is contained in:
luk3yx 2019-11-05 13:52:11 +13:00
parent 10096db4f3
commit 34e0ed35fa
1 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,8 @@ if not rawget then function rawget(n, name) return n[name] end end
if not rawset then function rawset(n, k, v) n[k] = v end end
if not rawequal then function rawequal(a, b) return a == b end end
-- Older versions of the CSM didn't provide assert().
-- Older versions of the CSM don't provide assert(), this function exists for
-- compatibility.
if not assert then
function assert(value, ...)
if value then