summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJoe Mooring <joe.mooring@veriphor.com>2020-05-13 13:35:07 -0400
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-05-14 10:00:31 +0200
commit991934497e88dcd4134a369a213bb5072c51c139 (patch)
treed8a6aa405dc93f821dc1b389f70827e14fea6bce /docs
parent558c09305e2be16953238c6c0e828f62b950e4f5 (diff)
Add math.Pow
Closes #7266
Diffstat (limited to 'docs')
-rw-r--r--docs/content/en/functions/math.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/en/functions/math.md b/docs/content/en/functions/math.md
index 29fe16985..58cc5d5db 100644
--- a/docs/content/en/functions/math.md
+++ b/docs/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}}` &rarr; `2` |
| `math.Log` | Returns the natural logarithm of the given number. | `{{math.Log 42}}` &rarr; `3.737` |
| `math.Sqrt` | Returns the square root of the given number. | `{{math.Sqrt 81}}` &rarr; `9` |
-
+| `math.Pow` | Returns the first number raised to the power of the second number. | `{{math.Pow 2 3}}` &rarr; `8` |