From 1d965e8684248c2ad3c3418c6d9b11cb31f5caa1 Mon Sep 17 00:00:00 2001 From: CPunch Date: Wed, 14 Aug 2019 15:25:09 -0500 Subject: [PATCH] fixed dumb dumb comments left over the function used to get the bytes at the position with k as the size. lol --- luac.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luac.py b/luac.py index ebe2327..cb054b3 100644 --- a/luac.py +++ b/luac.py @@ -28,7 +28,7 @@ lua_opcode_names = [ "CLOSURE", "VARARG" ] -# at [p]osition size of k +# at [p]osition to k def get_bits(num, p, k): # convert number into binary first binary = bin(num)