Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bc12d48

Browse files
committedJun 28, 2024
fixed inline links for provisioner
1 parent 4901de5 commit bc12d48

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎docs/data-sources/provisioner.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ resource "coder_agent" "main" {
3737

3838
### Read-Only
3939

40-
- `arch` (String) The architecture of the host. This exposes `runtime.GOARCH` (see https://pkg.go.dev/runtime#pkg-constants).
40+
- `arch` (String) The architecture of the host. This exposes `runtime.GOARCH` (see [Go constants](https://pkg.go.dev/runtime#pkg-constants)).
4141
- `id` (String) The ID of this resource.
42-
- `os` (String) The operating system of the host. This exposes `runtime.GOOS` (see https://pkg.go.dev/runtime#pkg-constants).
42+
- `os` (String) The operating system of the host. This exposes `runtime.GOOS` (see [Go constants](https://pkg.go.dev/runtime#pkg-constants)).

‎provider/provisioner.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ func provisionerDataSource() *schema.Resource {
2929
"os": {
3030
Type: schema.TypeString,
3131
Computed: true,
32-
Description: "The operating system of the host. This exposes `runtime.GOOS` (see https://pkg.go.dev/runtime#pkg-constants).",
32+
Description: "The operating system of the host. This exposes `runtime.GOOS` (see [Go constants](https://pkg.go.dev/runtime#pkg-constants)).",
3333
},
3434
"arch": {
3535
Type: schema.TypeString,
3636
Computed: true,
37-
Description: "The architecture of the host. This exposes `runtime.GOARCH` (see https://pkg.go.dev/runtime#pkg-constants).",
37+
Description: "The architecture of the host. This exposes `runtime.GOARCH` (see [Go constants](https://pkg.go.dev/runtime#pkg-constants)).",
3838
},
3939
},
4040
}

0 commit comments

Comments
 (0)
Please sign in to comment.