From a45b3fe1faae57b4ff5ffc7367af121393f14543 Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Tue, 29 Mar 2022 21:04:50 -0400 Subject: [PATCH] chore: fix dofile comment doc --- util/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/util.go b/util/util.go index abeaa9e..5534f0d 100644 --- a/util/util.go +++ b/util/util.go @@ -49,7 +49,7 @@ func DoString(rtm *rt.Runtime, code string) error { return err } -// DoString runs the contents of the file in the Lua runtime. +// DoFile runs the contents of the file in the Lua runtime. func DoFile(rtm *rt.Runtime, filename string) error { data, err := os.ReadFile(filename) if err != nil {