diff --git a/lang/bytecode.c b/lang/bytecode.c index 1544e2c..b3b2d15 100644 --- a/lang/bytecode.c +++ b/lang/bytecode.c @@ -37,7 +37,7 @@ switch (op) { // OP_RATIO1 pushes a rational on to the stack // First argument is a 4-byte little endian numerator - // The numerator is always 1 + // The denominator is always 1 case OP_RATIO1: { int num = 0; num |= *pos_code++ << 0;