rename micro:bit to @boardname@

This commit is contained in:
Peli de Halleux
2016-11-01 17:44:37 -07:00
parent 9bc1e38345
commit 89406330cf
226 changed files with 697 additions and 750 deletions

View File

@ -2,7 +2,7 @@
Reset the @boardname@ and start the program again.
This function is like pressing the reset button on the back of the micro:bit.
This function is like pressing the reset button on the back of the @boardname@.
```sig
control.reset()
@ -12,7 +12,7 @@ control.reset()
This program will count as high as you like when you press button `A`.
When you get tired of counting, press button `B` to reset the
micro:bit and start the program over.
@boardname@ and start the program over.
```blocks
let item = 0;
@ -28,7 +28,7 @@ input.onButtonPressed(Button.B, () => {
#### ~hint
This program works better on a real micro:bit than in the simulator.
This program works better on a real @boardname@ than in the simulator.
#### ~