Fix case of math in documentation snippet

This commit is contained in:
Thomas Denney 2016-07-25 10:22:15 +01:00
parent 3149ed4c1d
commit 7d3254477a
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ if (led.point(1,1) && led.point(2,2)) {
When you compare two Numbers, you get a Boolean value, such as the comparison `x < 5` in the code below:
```blocks
let x = math.random(5)
let x = Math.random(5)
if(x < 5) {
basic.showString("low");
} else {