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

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/about/contributing/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ Use the version bump script to update versions:

```bash
git add .
git commit -m "feat(git-clone):add git-clone module"
git commit -m "feat(git-clone): add git-clone module"
```

4. **Open a pull request**:
Expand Down
2 changes: 1 addition & 1 deletion docs/admin/networking/port-forwarding.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ where each segment of hostnames must not exceed 63 characters. If your app
name, agent name, workspace name and username exceed 63 characters in the
hostname, port forwarding via the dashboard will not work.

### From an coder_app resource
### From a coder_app resource

One way to port forward is to configure a `coder_app` resource in the
workspace's template. This approach shows a visual application icon in the
Expand Down
2 changes: 1 addition & 1 deletion docs/admin/templates/extending-templates/variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ and predictability.
If you encounter a situation where you need to override template settings for
variables, you can employ a straightforward solution:

1. Create a `terraform.tfvars` file in in the template directory:
1. Create a `terraform.tfvars` file in the template directory:

```tf
coder_image = newimage:tag
Expand Down
4 changes: 2 additions & 2 deletions docs/admin/users/idp-sync.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ role sync at the organization level.
1. Confirm you have the [Coder CLI](../../install/index.md) installed and are
logged in with a user who is an Owner or has an Organization Admin role.

1. To fetch the current group sync settings for an organization, run the
1. To fetch the current role sync settings for an organization, run the
following:

```sh
Expand Down Expand Up @@ -388,7 +388,7 @@ settings, a user's memberships will update when they log out and log back in.
"cbdcf774-4123-4118-8cd9-b3f502c84dfb"
],
"sales": [
"d79144d9-b30a-555a-9af8-7dac83b2q4ec",
"d79144d9-b30a-555a-9af8-7dac83b2q4ec"
]
},
"organization_assign_default": true
Expand Down
6 changes: 3 additions & 3 deletions docs/ai-coder/tasks-migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Below is a minimal illustrative example of a Coder Tasks template pre-2.28.0.
terraform {
required_providers {
coder = {
source = "coder/coder
source = "coder/coder"
}
}
}
Expand Down Expand Up @@ -124,8 +124,8 @@ Example (**not** a full template):
terraform {
required_providers {
coder = {
source = "coder/coder
version = ">= 2.13.0
source = "coder/coder"
version = ">= 2.13.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guides/workspace-access/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ customization options, keyboard shortcuts, and troubleshooting guides.

## SSH

### Through with the CLI
### Through the CLI

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