Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f518fb2

Browse files
fix(docs): fix P2/P3 typos and syntax errors from drift sweep (backport to release/2.34) (#28170)
Backport of #28101 to `release/2.34` (ESR). Cherry-picked `1d189cc204f9` from `main` via `git cherry-pick -x`. Docs-only change; applied cleanly with no conflicts. The `backport` label on the original merged PR did not produce a 2.34 backport, so this is created by hand. 2.34 is listed in `scripts/release_channels/esr_versions.txt`, so it is a valid backport target. - Original PR: #28101 - Tracking: DOCS-651 > This PR was created with AI assistance (Coder Agents).
1 parent 5d9e1ad commit f518fb2

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/about/contributing/modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ Use the version bump script to update versions:
342342

343343
```bash
344344
git add .
345-
git commit -m "feat(git-clone):add git-clone module"
345+
git commit -m "feat(git-clone): add git-clone module"
346346
```
347347

348348
4. **Open a pull request**:

docs/admin/networking/port-forwarding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ where each segment of hostnames must not exceed 63 characters. If your app
7878
name, agent name, workspace name and username exceed 63 characters in the
7979
hostname, port forwarding via the dashboard will not work.
8080

81-
### From an coder_app resource
81+
### From a coder_app resource
8282

8383
One way to port forward is to configure a `coder_app` resource in the
8484
workspace's template. This approach shows a visual application icon in the

docs/admin/templates/extending-templates/variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ and predictability.
5151
If you encounter a situation where you need to override template settings for
5252
variables, you can employ a straightforward solution:
5353

54-
1. Create a `terraform.tfvars` file in in the template directory:
54+
1. Create a `terraform.tfvars` file in the template directory:
5555

5656
```tf
5757
coder_image = newimage:tag

docs/admin/users/idp-sync.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ role sync at the organization level.
241241
1. Confirm you have the [Coder CLI](../../install/index.md) installed and are
242242
logged in with a user who is an Owner or has an Organization Admin role.
243243

244-
1. To fetch the current group sync settings for an organization, run the
244+
1. To fetch the current role sync settings for an organization, run the
245245
following:
246246

247247
```sh
@@ -388,7 +388,7 @@ settings, a user's memberships will update when they log out and log back in.
388388
"cbdcf774-4123-4118-8cd9-b3f502c84dfb"
389389
],
390390
"sales": [
391-
"d79144d9-b30a-555a-9af8-7dac83b2q4ec",
391+
"d79144d9-b30a-555a-9af8-7dac83b2q4ec"
392392
]
393393
},
394394
"organization_assign_default": true

docs/ai-coder/tasks-migration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Below is a minimal illustrative example of a Coder Tasks template pre-2.28.0.
7676
terraform {
7777
required_providers {
7878
coder = {
79-
source = "coder/coder
79+
source = "coder/coder"
8080
}
8181
}
8282
}
@@ -132,8 +132,8 @@ Example (**not** a full template):
132132
terraform {
133133
required_providers {
134134
coder = {
135-
source = "coder/coder
136-
version = ">= 2.13.0
135+
source = "coder/coder"
136+
version = ">= 2.13.0"
137137
}
138138
}
139139
}

docs/user-guides/workspace-access/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ customization options, keyboard shortcuts, and troubleshooting guides.
2626

2727
## SSH
2828

29-
### Through with the CLI
29+
### Through the CLI
3030

3131
Coder will use the optimal path for an SSH connection (determined by your
3232
deployment's [networking configuration](../../admin/infrastructure/index.md))

0 commit comments

Comments
 (0)