From bc621b031c7e9fe18d1c0d17cbc12223556b8a38 Mon Sep 17 00:00:00 2001 From: Teoxoy <28601907+Teoxoy@users.noreply.github.com> Date: Sun, 8 Sep 2019 05:53:37 +0200 Subject: [PATCH] align comments --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 996cbf8..47741d5 100644 --- a/README.md +++ b/README.md @@ -35,12 +35,12 @@ A config object can be passed in for extra functionality ```js const luaEnv = luainjs.createEnv({ - LUA_PATH, // default value of package.path + LUA_PATH, // default value of package.path fileExists, // function that takes in a path and returns a boolean - loadFile, // function that takes in a path and returns the content of a file - stdin, // string representing the standard input - stdout, // function representing the standard output - osExit // function called by os.exit + loadFile, // function that takes in a path and returns the content of a file + stdin, // string representing the standard input + stdout, // function representing the standard output + osExit // function called by os.exit }) ```