Skip to content

Commit 8531e21

Browse files
authored
docs: fix typos again (#2185)
1 parent 3a38a3e commit 8531e21

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

asdf.nu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ module asdf {
190190
command: string # Name of command
191191
]
192192

193-
# Display install path for an installled package version
193+
# Display install path for an installed package version
194194
export extern "asdf where" [
195195
name: string@"complete asdf installed" # Name of installed package
196196
version?: string@"complete asdf plugin versions installed" # Version of installed package

docs/pt-br/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ features:
3333
details: "Suporta Bash, ZSH, Fish & Elvish com autocomplete."
3434
icon: 🐚
3535
- title: "GitHub Actions"
36-
details: "Fornece um GitHub Action para instalar e utilizar seu .tool-verions em seu fluxo de trabalho CICD."
36+
details: "Fornece um GitHub Action para instalar e utilizar seu .tool-versions em seu fluxo de trabalho CICD."
3737
icon: 🤖
3838
---

docs/zh-hans/manage/versions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ asdf set <name> latest[:<version>]
8787

8888
#### 通过环境变量
8989

90-
在确定版本时,系统会查询符合模式的环境变量 `ASDF_${TOOL}_VERISON`。该版本格式与 `.tool-versions` 文件中支持的格式一致。如果设置了该环境变量,其值将覆盖任何 `.tool-versions` 文件中为该工具设置的版本。例如:
90+
在确定版本时,系统会查询符合模式的环境变量 `ASDF_${TOOL}_VERSION`。该版本格式与 `.tool-versions` 文件中支持的格式一致。如果设置了该环境变量,其值将覆盖任何 `.tool-versions` 文件中为该工具设置的版本。例如:
9191

9292
```shell
9393
export ASDF_ELIXIR_VERSION=1.18.1

internal/cli/cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func Execute(version string) {
105105
{
106106
Name: "exec",
107107
// We want all arguments to exec to remain unparsed so we can pass them
108-
// directly to the command asdf whill exec on behalf of the shim/user.
108+
// directly to the command asdf will exec on behalf of the shim/user.
109109
// SkipFlagParsing tells urfave/cli to do this.
110110
SkipFlagParsing: true,
111111
Action: func(_ context.Context, cmd *cli.Command) error {

internal/completions/asdf.nushell

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ module asdf {
161161
command: string # Name of command
162162
]
163163

164-
# Display install path for an installled package version
164+
# Display install path for an installed package version
165165
export extern "asdf where" [
166166
name: string@"complete asdf installed" # Name of installed package
167167
version?: string@"complete asdf plugin versions installed" # Version of installed package

test/utils.bats

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ teardown() {
133133
[ "$output" = "path:/some/dummy path" ]
134134
}
135135

136-
@test "parse_asdf_version_file should output path version with tilda" {
136+
@test "parse_asdf_version_file should output path version with tilde" {
137137
echo "dummy path:~/some/dummy path" >"$PROJECT_DIR/.tool-versions"
138138
run parse_asdf_version_file "$PROJECT_DIR/.tool-versions" dummy
139139
[ "$status" -eq 0 ]
@@ -278,7 +278,7 @@ teardown() {
278278
[ "$output" = "path:/some/place with spaces" ]
279279
}
280280

281-
@test "get_preset_version_for should return path version with tilda" {
281+
@test "get_preset_version_for should return path version with tilde" {
282282
cd "$PROJECT_DIR"
283283
echo "dummy path:~/some/place with spaces" >"$PROJECT_DIR/.tool-versions"
284284
run get_preset_version_for "dummy"

0 commit comments

Comments
 (0)