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 .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ jobs:
- name: Checkout Actions Repository
uses: actions/checkout@v5
- name: Spell Check Repo
uses: crate-ci/typos@v1.42.3
uses: crate-ci/typos@v1.44.0

report-timings:
name: Timing HTML report
Expand Down
2 changes: 1 addition & 1 deletion ci/validate-version-bump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This script checks if a crate needs a version bump.
#
# At the time of writing, it doesn't check what kind of bump is required.
# In the future, we could take SemVer compatibliity into account, like
# In the future, we could take SemVer compatibility into account, like
# integrating `cargo-semver-checks` of else
#
# Inputs:
Expand Down
2 changes: 1 addition & 1 deletion src/cargo/core/compiler/custom_build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ fn build_work(build_runner: &mut BuildRunner<'_, '_>, unit: &Unit) -> CargoResul
}
}
for (k, v) in cfg_map {
// FIXME: We should handle raw-idents somehow instead of predenting they
// FIXME: We should handle raw-idents somehow instead of pretending they
// don't exist here
let k = format!("CARGO_CFG_{}", super::envify(k));
cmd.env(&k, v.join(","));
Expand Down