From aad0d2a0f6dfda14ee6db12136a55ec0dfbe11b5 Mon Sep 17 00:00:00 2001 From: Qais Patankar Date: Thu, 30 Apr 2020 17:10:01 +0100 Subject: [PATCH] docs: fix `line_tabel` typo --- docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index c59f6f7..5642526 100644 --- a/docs/api.md +++ b/docs/api.md @@ -83,7 +83,7 @@ table. If there are any errors then `nil` and the error message are returned. ```moononly import to_lua from require "moonscript.base" -lua_code, line_tabel = to_lua [[ +lua_code, line_table = to_lua [[ x = 124 print "hello world #{x}" ]]