Typos from the latest translator sweep (#687)

* Typos from the latest translator sweep

* Fix heading level for examples
This commit is contained in:
Galen Nickel 2018-03-05 15:31:09 -08:00 committed by Peli de Halleux
parent 4ac8b41751
commit e103cf8e76
2 changed files with 4 additions and 4 deletions

View File

@ -98,7 +98,7 @@ You can attach an external device such as a motor to these and power it using th
## Serial Communication
The micro:bit can send an receive data via [serial communication](/device/serial). The serial data can be transfered via USB or BLE.
The micro:bit can send and receive data via [serial communication](/device/serial). The serial data can be transfered via USB or BLE.
## Bluetooth Low Energy (BLE) Antenna
@ -111,4 +111,4 @@ control the micro:bit or the micro:bit can control another BLE device.
## Technical Information
The micro:bit has been designed to be a bare-board micro controller for use by children aged 11-12.
More information is available at the [Microbit Foundation web site](https://microbit.org/guide/.
More information is available at the [Microbit Foundation web site](https://microbit.org/guide/).

View File

@ -9,14 +9,14 @@ For example, this code displays the number 42:
basic.showNumber(42);
```
## #declareexample
### #declareexample
```block
let num = 42;
basic.showNumber(42);
```
## #functionreturnexample
### #functionreturnexample
For example the following code gets the display brightness
(using the [brightness function](/reference/led/brightness)) and stores the value in a variable named `brightness`: