diff --git a/content/en/functions/math.md b/content/en/functions/math.md index 29fe16985..58cc5d5db 100644 --- a/content/en/functions/math.md +++ b/content/en/functions/math.md @@ -38,4 +38,4 @@ aliases: [] | `math.Round` | Returns the nearest integer, rounding half away from zero. | `{{math.Round 1.5}}` → `2` | | `math.Log` | Returns the natural logarithm of the given number. | `{{math.Log 42}}` → `3.737` | | `math.Sqrt` | Returns the square root of the given number. | `{{math.Sqrt 81}}` → `9` | - +| `math.Pow` | Returns the first number raised to the power of the second number. | `{{math.Pow 2 3}}` → `8` |