From c90a73c10f059cc0ac64036a5af6a229ef339e00 Mon Sep 17 00:00:00 2001 From: Dmitry Boulytchev Date: Tue, 28 Sep 2021 10:39:02 +0300 Subject: [PATCH] Fixed typo --- byterun/byterun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/byterun/byterun.c b/byterun/byterun.c index 0a0620152..f57ab9746 100644 --- a/byterun/byterun.c +++ b/byterun/byterun.c @@ -70,7 +70,7 @@ bytefile* read_file (char *fname) { return file; } -/* Disassembles the bytecode pull */ +/* Disassembles the bytecode pool */ void disassemble (FILE *f, bytefile *bf) { # define INT (ip += sizeof (int), *(int*)(ip - sizeof (int)))