Skip to content

Commit f25fcee

Browse files
committed
rebase and new fixes
1 parent 0f18488 commit f25fcee

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

compiler/rustc_hir_typeck/src/fn_ctxt/checks.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2430,7 +2430,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
24302430
}
24312431

24322432
if !mismatched_params.is_empty() {
2433-
// For each mismatched paramter, create a two-way link to each matched parameter
2433+
// For each mismatched parameter, create a two-way link to each matched parameter
24342434
// of the same type.
24352435
let mut dependants = IndexVec::<ExpectedIdx, _>::from_fn_n(
24362436
|_| SmallVec::<[u32; 4]>::new(),
@@ -2473,7 +2473,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
24732473
spans.push_span_label(param.param.span(), "");
24742474
}
24752475
}
2476-
// Highligh each parameter being depended on for a generic type.
2476+
// Highlight each parameter being depended on for a generic type.
24772477
for ((&(_, param), deps), &(_, expected_ty)) in
24782478
params_with_generics.iter().zip(&dependants).zip(formal_and_expected_inputs)
24792479
{

library/core/src/intrinsics/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4067,7 +4067,7 @@ pub const unsafe fn const_deallocate(_ptr: *mut u8, _size: usize, _align: usize)
40674067
/// Returns whether we should perform contract-checking at runtime.
40684068
///
40694069
/// This is meant to be similar to the ub_checks intrinsic, in terms
4070-
/// of not prematurely commiting at compile-time to whether contract
4070+
/// of not prematurely committing at compile-time to whether contract
40714071
/// checking is turned on, so that we can specify contracts in libstd
40724072
/// and let an end user opt into turning them on.
40734073
#[cfg(not(bootstrap))]

library/std/src/sys/pal/uefi/process.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ mod uefi_command_internal {
757757
}
758758

759759
/// Create a map of environment variable changes. Allows efficient setting and rolling back of
760-
/// enviroment variable changes.
760+
/// environment variable changes.
761761
///
762762
/// Entry: (Old Value, New Value)
763763
fn env_changes(env: &CommandEnv) -> Option<BTreeMap<EnvKey, (Option<OsString>, Option<OsString>)>> {

src/librustdoc/doctest/extracted.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ impl ExtractedDocTests {
5252
Some(&opts.crate_name),
5353
);
5454
self.doctests.push(ExtractedDocTest {
55-
file: filename.prefer_remapped_unconditionaly().to_string(),
55+
file: filename.prefer_remapped_unconditionally().to_string(),
5656
line,
5757
doctest_attributes: langstr.into(),
5858
doctest_code: if size != 0 { Some(full_test_code) } else { None },

0 commit comments

Comments
 (0)