Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
osyrisrblx authored Jun 26, 2024
1 parent 0b84621 commit d4f4489
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/init.spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ return function()
assert(t.type("table")({}))
assert(t.type("userdata")(newproxy()))
assert(t.type("function")(function() end))
assert(t.type("thread")(coroutine.create(nction() end)))
assert(t.type("thread")(coroutine.create(function() end)))

assert(not t.type("nil")(true))
assert(not t.type("boolean")("true"))
Expand Down Expand Up @@ -603,4 +603,4 @@ return function()
assert(fixedArrayCheck2({10, 20, "Hello"}))
assert(not fixedArrayCheck2({10, 20, 30}))
end)
end
end

0 comments on commit d4f4489

Please sign in to comment.