Rename function call in number documentation

This commit is contained in:
Thomas Denney 2016-07-25 11:01:10 +01:00
parent c055a5d329
commit d5cb085264
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ The [math library](/blocks/math) includes math related functions.
For example, the `absolute` function returns the returns the absolute value of input parameter `x`:
```blocks
let abs = math.absolute(-42);
let abs = Math.abs(-42);
basic.showNumber(abs);
```