pxt-microbit Accessibility PR (#529)

* Accessibility changes
This commit is contained in:
Sam El-Husseini
2017-09-07 13:42:08 -07:00
committed by GitHub
parent 3f87576a50
commit e3975e65e5
357 changed files with 1641 additions and 3540 deletions

View File

@ -7,11 +7,11 @@ let item: game.LedSprite = null;
item.move(1);
```
### Parameters
## Parameters
* a [number](/types/number) that means how many LEDs the sprite should move
### Example
## Example
This program starts a sprite in the middle of the screen.
Next, the sprite turns toward the lower-right corner.
@ -23,7 +23,7 @@ item.turn(Direction.Right, 45);
item.move(2);
```
### See also
## See also
[turn](/reference/game/turn),
[create sprite](/reference/game/create-sprite)