From 52fdaeec999cb48a87b69153fe91687590c60404 Mon Sep 17 00:00:00 2001 From: Sam El-Husseini Date: Wed, 3 Jan 2018 14:22:00 -0800 Subject: [PATCH] remove colon from print line block --- libs/core/screen.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/core/screen.ts b/libs/core/screen.ts index 652d086d..4d47d4c6 100644 --- a/libs/core/screen.ts +++ b/libs/core/screen.ts @@ -92,7 +92,7 @@ namespace brick { * @param text the text to print on the screen, eg: "Hello world" * @param line the line number to print the text at, eg: 0 */ - //% blockId=screen_print block="print %text| at line: %line" + //% blockId=screen_print block="print %text| at line %line" //% weight=98 group="Screen" inlineInputMode="inline" blockGap=8 //% line.min=0 line.max=9 export function printLine(text: string, line: number) {