Skip to content

Commit 5b311bb

Browse files
committed
末尾の空白によるエラーの解消
1 parent bd950ec commit 5b311bb

File tree

1 file changed

+4
-4
lines changed
  • src/lib/ruby-to-blocks-converter

1 file changed

+4
-4
lines changed

src/lib/ruby-to-blocks-converter/wedo2.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ const Wedo2Converter = {
2525
if (args.length === 1 && this._isString(args[0])) {
2626
block = this._createBlock('wedo2_motorOn', 'statement');
2727
this._addInput(
28-
block,
29-
'MOTOR_ID',
28+
block,
29+
'MOTOR_ID',
3030
this._createFieldBlock('wedo2_menu_MOTOR_ID', 'MOTOR_ID', args[0])
3131
);
3232
}
@@ -35,8 +35,8 @@ const Wedo2Converter = {
3535
if (args.length === 1 && this._isString(args[0])) {
3636
block = this._createBlock('wedo2_motorOff', 'statement');
3737
this._addInput(
38-
block,
39-
'MOTOR_ID',
38+
block,
39+
'MOTOR_ID',
4040
this._createFieldBlock('wedo2_menu_MOTOR_ID', 'MOTOR_ID', args[0])
4141
);
4242
}

0 commit comments

Comments
 (0)