Skip to content

Commit 9f3c0de

Browse files
committed
fix: update some headers to point to the correct location
1 parent 60d1b37 commit 9f3c0de

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/docs/steps/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A build plan is a sequence of steps:
1111
* the [`get` step](get.md) fetches a [resource](../resources/index.md)
1212
* the [`put` step](put.md) updates a [resource](../resources/index.md)
1313
* the [`set_pipeline` step](set-pipeline.md) configures a [pipeline](../pipelines/index.md)
14-
* the [`load_var` step](load-var.md) loads a value into a [local var](../vars.md#the--var-source)
14+
* the [`load_var` step](load-var.md) loads a value into a [local var](../vars.md#local-var)
1515
* the [`in_parallel` step](in-parallel.md) runs steps in parallel
1616
* the [`do` step](do.md) runs steps in sequence
1717
* the [`across` step](modifier-and-hooks/across.md) modifier runs a step multiple times; once for each combination of

docs/docs/steps/load-var.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ title: Load Var Step
55
# `load_var` Step
66

77
Load the value for a var at runtime from a file, making it available to subsequent steps as
8-
a [local build var](../vars.md#the--var-source) named after the given identifier. Expand each section below for more
8+
a [local build var](../vars.md#local-var) named after the given identifier. Expand each section below for more
99
details and examples.

docs/docs/steps/modifier-and-hooks/across.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ the [`set_pipeline` step](../set-pipeline.md), and [instanced pipelines](../../p
1616
maintain a dynamically sized group of related pipelines.
1717

1818
More fields are also available for variable interpolation with the across step.
19-
See [Across Step & Dynamic Vars](../../vars.md#across-step--dynamic-vars) for details.
19+
See [Across Step & Dynamic Vars](../../vars.md#across-step-dynamic-vars) for details.
2020

2121
!!! note
2222

docs/docs/vars.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The full syntax for vars is `((`_`source-name:secret-path.secret-field`_`))`.
1919
The optional _source-name_ identifies the [var source](#var-sources-experimental) from which the value will be read. If
2020
omitted (along with the `:` delimiter), the [cluster-wide credential manager](#the-cluster-wide-credential-manager) will
2121
be used, or the value may be provided [statically](#static-vars). The special name `.` refers to
22-
the [local var source](#the--var-source), while any other name refers to a [var source](#var-sources-experimental).
22+
the [local var source](#local-var), while any other name refers to a [var source](#var-sources-experimental).
2323

2424
The required _secret-path_ identifies the location of the credential. The interpretation of this value depends on the
2525
var source type. For example, with Vault this may be a path like `path/to/cred`. For the Kubernetes secret manager this
@@ -36,7 +36,7 @@ The _secret-path_ and _secret-field_ may be surrounded by double quotes `"..."`
3636
like `.` and `:`. For instance, `((source:"my.secret"."field:1"))` will set the _secret-path_ to `my.secret` and the
3737
_secret-field_ to `field:1`.
3838

39-
## The "`.`" var source
39+
## The "`.`" var source {: #local-var }
4040

4141
The special var source name `.` refers to a "local var source."
4242

0 commit comments

Comments
 (0)