summaryrefslogtreecommitdiff
path: root/docs-src/content/functions/test.yml
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2024-06-28 22:08:01 -0400
committerGitHub <noreply@github.com>2024-06-29 02:08:01 +0000
commitbdf4f8c7d802c6f8ce4bbe6418d583a1449fe493 (patch)
tree0098cad0706a2bf2e090c21f302fb5d79ce7fbd9 /docs-src/content/functions/test.yml
parentc9643cad84f95ac0086f8caa0b868364741aa6e6 (diff)
docs(fix): Fix broken links, add CI to check (#2156)
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'docs-src/content/functions/test.yml')
-rw-r--r--docs-src/content/functions/test.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs-src/content/functions/test.yml b/docs-src/content/functions/test.yml
index 09bd1b02..7d312e26 100644
--- a/docs-src/content/functions/test.yml
+++ b/docs-src/content/functions/test.yml
@@ -61,7 +61,7 @@ funcs:
represent _any_ numeric kind (whether `float32`, `uint8`, or whatever).
This is useful when the specific numeric type is unknown.
- See also [`test.Kind`](test-kind).
+ See also [`test.Kind`](#testkind).
pipeline: true
arguments:
- name: kind
@@ -99,7 +99,7 @@ funcs:
If you need to know the precise type of a value, use `printf "%T" $value`.
- See also [`test.IsKind`](test-iskind).
+ See also [`test.IsKind`](#testiskind).
pipeline: true
arguments:
- name: value
@@ -156,7 +156,7 @@ funcs:
alias: ternary
released: v3.1.0
description: |
- Returns one of two values depending on whether the third is true. Note that the third value does not have to be a boolean - it is converted first by the [`conv.ToBool`](../conv/#conv-tobool) function (values like `true`, `1`, `"true"`, `"Yes"`, etc... are considered true).
+ Returns one of two values depending on whether the third is true. Note that the third value does not have to be a boolean - it is converted first by the [`conv.ToBool`](../conv/#convtobool) function (values like `true`, `1`, `"true"`, `"Yes"`, etc... are considered true).
This is effectively a short-form of the following template: