diff --git a/src/extensions/scratch3_ev3/index.js b/src/extensions/scratch3_ev3/index.js index b9d9f6543..fffbd2f5a 100644 --- a/src/extensions/scratch3_ev3/index.js +++ b/src/extensions/scratch3_ev3/index.js @@ -770,7 +770,7 @@ class EV3 { for (let i = 0; i < 4; i++) { cmds[index + 0] = Ev3Opcode.OPOUTPUT_GET_COUNT; cmds[index + 1] = Ev3Args.LAYER; - cmds[index + 2] = i; // PORT TODO: explain incorrect documentation as 'Output bit field' + cmds[index + 2] = i; // PORT (incorrectly specified as 'Output bit field' in docs) cmds[index + 3] = Ev3ParamEncoding.GLOBAL_ONE_BYTE; cmds[index + 4] = sensorCount * 4; // GLOBAL INDEX index += 5;