From bf3dd083788d1b7d46bfbbfe948a1846a4b978b7 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Wed, 13 May 2020 13:35:07 -0400 Subject: [PATCH] Add math.Pow Closes #7266 --- content/en/functions/math.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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` |