Skip to content

Commit af03ac4

Browse files
Based on support feedback tweak language. (#52)
LED is the language used in MakeCode so this change should make it a little easier.
1 parent 26d278a commit af03ac4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lang/en/typeshed/stdlib/microbit/display.pyi

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def show(
4040
loop: bool = False,
4141
clear: bool = False,
4242
) -> None:
43-
"""Shows images, letters or digits on the display.
43+
"""Shows images, letters or digits on the LED display.
4444
4545
Example: ``display.show(Image.HEART)``
4646
@@ -64,7 +64,7 @@ def scroll(
6464
loop: bool = False,
6565
monospace: bool = False,
6666
) -> None:
67-
"""Scrolls a number or text on the display.
67+
"""Scrolls a number or text on the LED display.
6868
6969
Example: ``display.scroll('micro:bit')``
7070
@@ -80,21 +80,21 @@ def scroll(
8080
...
8181

8282
def on() -> None:
83-
"""Turn on the display.
83+
"""Turn on the LED display.
8484
8585
Example: ``display.on()``
8686
"""
8787
...
8888

8989
def off() -> None:
90-
"""Turn off the display (allowing you to re-use the GPIO pins associated with the display for other purposes).
90+
"""Turn off the LED display (disabling the display allows you to re-use the GPIO pins for other purposes).
9191
9292
Example: ``display.off()``
9393
"""
9494
...
9595

9696
def is_on() -> bool:
97-
"""Check whether the display is on.
97+
"""Check whether the LED display is enabled.
9898
9999
Example: ``display.is_on()``
100100

0 commit comments

Comments
 (0)