From 8d7b124c1f8d3ed8784b5c1a092c5d8016f6935a Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Wed, 30 Mar 2022 17:28:19 -0400 Subject: [PATCH] a few mode feedback fixes per @bjorn3 --- compiler/rustc_middle/src/ty/sty.rs | 2 +- compiler/rustc_mir_transform/src/simplify_try.rs | 2 +- compiler/rustc_target/src/spec/mod.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/rustc_middle/src/ty/sty.rs b/compiler/rustc_middle/src/ty/sty.rs index dd1ccd4e4ef07..5a13216846d54 100644 --- a/compiler/rustc_middle/src/ty/sty.rs +++ b/compiler/rustc_middle/src/ty/sty.rs @@ -284,7 +284,7 @@ static_assert_size!(TyKind<'_>, 32); /// - 'l0...'li and T0...Tj are the generic parameters /// in scope on the function that defined the closure, /// - CK represents the *closure kind* (Fn vs FnMut vs FnOnce). This -/// is rather hacky encoded via a scalar type. See +/// is rather hackily encoded via a scalar type. See /// `Ty::to_opt_closure_kind` for details. /// - CS represents the *closure signature*, representing as a `fn()` /// type. For example, `fn(u32, u32) -> u32` would mean that the closure diff --git a/compiler/rustc_mir_transform/src/simplify_try.rs b/compiler/rustc_mir_transform/src/simplify_try.rs index 70e2e8d75e818..ce4b45062e8de 100644 --- a/compiler/rustc_mir_transform/src/simplify_try.rs +++ b/compiler/rustc_mir_transform/src/simplify_try.rs @@ -72,7 +72,7 @@ struct ArmIdentityInfo<'tcx> { /// (StorageLive index,, StorageDead index, Local) storage_stmts: Vec<(usize, usize, Local)>, - /// The statements that should be removed (turned into noops) + /// The statements that should be removed (turned into nops) stmts_to_remove: Vec, /// Indices of debug variables that need to be adjusted to point to diff --git a/compiler/rustc_target/src/spec/mod.rs b/compiler/rustc_target/src/spec/mod.rs index 61e234251ec31..4953dafe89bdc 100644 --- a/compiler/rustc_target/src/spec/mod.rs +++ b/compiler/rustc_target/src/spec/mod.rs @@ -1255,7 +1255,7 @@ pub struct TargetOptions { /// handling COFF object files with more than 215 sections. Since each weak /// symbol needs its own COMDAT section, weak linkage implies a large /// number sections that easily exceeds the given limit for larger - /// codebase. Consequently we want a way to disallow weak linkage on some + /// codebases. Consequently we want a way to disallow weak linkage on some /// platforms. pub allows_weak_linkage: bool, /// Whether the linker support rpaths or not. Defaults to false.