From c055a5d3295f7465c4af4839f06b3c987fcd4799 Mon Sep 17 00:00:00 2001 From: Thomas Denney Date: Mon, 25 Jul 2016 11:00:34 +0100 Subject: [PATCH] Syntax fixes to LED plotting docs --- docs/reference/led/plot-leds.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/reference/led/plot-leds.md b/docs/reference/led/plot-leds.md index ca26dde1..dd796a45 100644 --- a/docs/reference/led/plot-leds.md +++ b/docs/reference/led/plot-leds.md @@ -3,11 +3,11 @@ Display an [Image](/reference/images/image) on the BBC micro:bit's [LED screen](/device/screen). NOTE: `basic -> plot image` has been replaced by `basic -> show leds`. ```sig -basic.plotLeds(` +basic.showLeds(` . . . . . . # . # . . . # . . -# ; . . # +# . . . # . # # # . `) ``` @@ -16,14 +16,14 @@ basic.plotLeds(` * leds - a series of LED on/off states that form an image (see steps below) -### Example: simley +### Example: smiley ```blocks -basic.plotLeds(` +basic.showLeds(` . . . . . . # . # . . . # . . -# ; . . # +# . . . # . # # # . `) ```