From cbb99e2ee62510a630a2f3d09e61f99e1944d5e4 Mon Sep 17 00:00:00 2001 From: Evelyn Eastmond Date: Fri, 14 Jun 2019 14:48:25 -0400 Subject: [PATCH] Comment clarifying mistake in LEGO docs. --- src/extensions/scratch3_ev3/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;