Skip to content

Commit fba6b1f

Browse files
im-coder-lgbpmct
authored andcommitted
fix: missing spacing added; typo fix (#1586)
Co-authored-by: Ben <ben@coder.com>
1 parent d6f2559 commit fba6b1f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/docker-image-builds/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Edit the validation to include the new image:
5454

5555
```diff
5656
variable "docker_image" {
57-
description = "What Docker imagewould you like to use for your workspace?"
57+
description = "What Docker image would you like to use for your workspace?"
5858
default = "base"
5959

6060
# List of images available for the user to choose from.

examples/docker-image-builds/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ resource "coder_agent" "dev" {
5656
}
5757

5858
variable "docker_image" {
59-
description = "What Docker imagewould you like to use for your workspace?"
59+
description = "What Docker image would you like to use for your workspace?"
6060
default = "base"
6161

6262
# List of images available for the user to choose from.

examples/docker/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Edit the template:
2020
vim main.tf
2121
```
2222
variable "docker_image" {
23-
description = "What Docker imagewould you like to use for your workspace?"
23+
description = "What Docker image would you like to use for your workspace?"
2424
default = "codercom/enterprise-base:ubuntu"
2525
validation {
2626
- condition = contains(["codercom/enterprise-base:ubuntu", "codercom/enterprise-node:ubuntu", "codercom/enterprise-intellij:ubuntu"], var.docker_image)
@@ -46,7 +46,7 @@ To reduce drift, we recommend versioning images in your registry by creating tag
4646

4747
```sh
4848
variable "docker_image" {
49-
description = "What Docker imagewould you like to use for your workspace?"
49+
description = "What Docker image would you like to use for your workspace?"
5050
default = "codercom/enterprise-base:ubuntu"
5151
validation {
5252
- condition = contains(["my-org/base-development:v1.1", "myorg-java-development:v1.1"], var.docker_image)

0 commit comments

Comments
 (0)