summaryrefslogtreecommitdiff
path: root/docs-src/content/functions/math.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docs-src/content/functions/math.yml')
-rw-r--r--docs-src/content/functions/math.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs-src/content/functions/math.yml b/docs-src/content/functions/math.yml
index d375ae02..53f14103 100644
--- a/docs-src/content/functions/math.yml
+++ b/docs-src/content/functions/math.yml
@@ -52,7 +52,7 @@ funcs:
- name: math.Ceil
released: v2.6.0
description: |
- Returns the least integer value greater than or equal to a given floating-point number. This wraps Go's [`math.Ceil`](https://golang.org/pkg/math/#Ceil).
+ Returns the least integer value greater than or equal to a given floating-point number. This wraps Go's [`math.Ceil`](https://pkg.go.dev/math/#Ceil).
**Note:** the return value of this function is a `float64` so that the special-cases `NaN` and `Inf` can be returned appropriately.
arguments:
@@ -89,7 +89,7 @@ funcs:
- name: math.Floor
released: v2.6.0
description: |
- Returns the greatest integer value less than or equal to a given floating-point number. This wraps Go's [`math.Floor`](https://golang.org/pkg/math/#Floor).
+ Returns the greatest integer value less than or equal to a given floating-point number. This wraps Go's [`math.Floor`](https://pkg.go.dev/math/#Floor).
**Note:** the return value of this function is a `float64` so that the special-cases `NaN` and `Inf` can be returned appropriately.
arguments:
@@ -154,7 +154,7 @@ funcs:
- name: math.Max
released: v2.6.0
description: |
- Returns the largest number provided. If any values are floating-point numbers, a `float64` is returned, otherwise an `int64` is returned. The same special-cases as Go's [`math.Max`](https://golang.org/pkg/math/#Max) are followed.
+ Returns the largest number provided. If any values are floating-point numbers, a `float64` is returned, otherwise an `int64` is returned. The same special-cases as Go's [`math.Max`](https://pkg.go.dev/math/#Max) are followed.
arguments:
- name: nums...
required: true
@@ -166,7 +166,7 @@ funcs:
- name: math.Min
released: v2.6.0
description: |
- Returns the smallest number provided. If any values are floating-point numbers, a `float64` is returned, otherwise an `int64` is returned. The same special-cases as Go's [`math.Min`](https://golang.org/pkg/math/#Min) are followed.
+ Returns the smallest number provided. If any values are floating-point numbers, a `float64` is returned, otherwise an `int64` is returned. The same special-cases as Go's [`math.Min`](https://pkg.go.dev/math/#Min) are followed.
arguments:
- name: nums...
required: true
@@ -192,7 +192,7 @@ funcs:
alias: pow
released: v2.2.0
description: |
- Calculate an exponent - _b<sup>n</sup>_. This wraps Go's [`math.Pow`](https://golang.org/pkg/math/#Pow). If any values are floating-point numbers, a `float64` is returned, otherwise an `int64` is returned.
+ Calculate an exponent - _b<sup>n</sup>_. This wraps Go's [`math.Pow`](https://pkg.go.dev/math/#Pow). If any values are floating-point numbers, a `float64` is returned, otherwise an `int64` is returned.
arguments:
- name: b
required: true