Skip to content

Commit d3fe869

Browse files
committed
Change leftover cut/paste error
1 parent 8fa5612 commit d3fe869

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/blocks/mrc_port.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ export const OUTPUT_NAME = 'mrc_port';
3434
type PortBlock = Blockly.Block & PortMixin;
3535
interface PortMixin extends PortMixinType {
3636
}
37-
type PortMixinType = typeof COMPONENT;
37+
type PortMixinType = typeof PORT;
3838

39-
const COMPONENT = {
39+
const PORT = {
4040
/**
4141
* Block initialization.
4242
*/
@@ -52,7 +52,7 @@ const COMPONENT = {
5252
}
5353

5454
export const setup = function () {
55-
Blockly.Blocks[BLOCK_NAME] = COMPONENT;
55+
Blockly.Blocks[BLOCK_NAME] = PORT;
5656
}
5757

5858
export const pythonFromBlock = function (

0 commit comments

Comments
 (0)