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

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`: For example, the `absolute` function returns the returns the absolute value of input parameter `x`:
```blocks ```blocks
let abs = math.absolute(-42); let abs = Math.abs(-42);
basic.showNumber(abs); basic.showNumber(abs);
``` ```