Skip to content

Commit 5d41f7c

Browse files
committed
Fix some minor issues in comments
Signed-off-by: houpo-bob <[email protected]>
1 parent 4eedad3 commit 5d41f7c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/build_helper/src/npm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pub fn install(src_root_path: &Path, out_dir: &Path, npm: &Path) -> Result<PathB
2727
}
2828
// disable a bunch of things we don't want.
2929
// this makes tidy output less noisy, and also significantly improves runtime
30-
// of repeated tidy invokations.
30+
// of repeated tidy invocations.
3131
cmd.args(&["--audit=false", "--save=false", "--fund=false"]);
3232
cmd.current_dir(out_dir);
3333
let exit_status = cmd.spawn()?.wait()?;

src/ci/github-actions/jobs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ jobs:
104104
# These jobs automatically inherit envs.pr, to avoid repeating it in each job
105105
# definition.
106106
#
107-
# PR CI jobs will be automatically registered as Auto CI jobs or overriden. When
107+
# PR CI jobs will be automatically registered as Auto CI jobs or overridden. When
108108
# automatically registered, the PR CI job configuration will be copied as an
109-
# Auto CI job but with `continue_on_error` overriden to `false` (to fail-fast).
110-
# When overriden, `citool` will check for equivalence between the PR and CI job
109+
# Auto CI job but with `continue_on_error` overridden to `false` (to fail-fast).
110+
# When overridden, `citool` will check for equivalence between the PR and CI job
111111
# of the same name modulo `continue_on_error` and `env`.
112112
pr:
113113
- name: pr-check-1
@@ -166,7 +166,7 @@ optional:
166166
#
167167
# Auto jobs may not specify `continue_on_error: true`, and thus will fail-fast.
168168
#
169-
# Unless explicitly overriden, PR CI jobs will be automatically registered as
169+
# Unless explicitly overridden, PR CI jobs will be automatically registered as
170170
# Auto CI jobs.
171171
auto:
172172
#############################

src/doc/rustc/src/command-line-arguments/print-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The names of the files created by the `link` emit kind.
3232

3333
## `sysroot`
3434

35-
Abosulte path to the sysroot.
35+
Absolute path to the sysroot.
3636

3737
Example (with rustup and the stable toolchain):
3838

0 commit comments

Comments
 (0)