about summary refs log tree commit diff
path: root/compiler/rustc_target/src/asm/mod.rs
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-01-31 06:58:26 +0100
committerGitHub <noreply@github.com>2022-01-31 06:58:26 +0100
commit6749f32c3389185ab655b0781ea495d46040092b (patch)
treee6457dfeb401668a1ca4b3cf0b22945e71de89b1 /compiler/rustc_target/src/asm/mod.rs
parente58e7b10e13595b4df1b105bfb9ad03c8dee7832 (diff)
parent521b1ee974296b4d2ecce79efaa10347642d1e3e (diff)
downloadrust-6749f32c3389185ab655b0781ea495d46040092b.tar.gz
rust-6749f32c3389185ab655b0781ea495d46040092b.zip
Rollup merge of #90277 - pierwill:fix-70258-inference-terms, r=jackh726
Improve terminology around "after typeck"

Closes #70258.
Diffstat (limited to 'compiler/rustc_target/src/asm/mod.rs')
-rw-r--r--compiler/rustc_target/src/asm/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_target/src/asm/mod.rs b/compiler/rustc_target/src/asm/mod.rs
index 8046267a59d..a84410d0f3c 100644
--- a/compiler/rustc_target/src/asm/mod.rs
+++ b/compiler/rustc_target/src/asm/mod.rs
@@ -444,7 +444,7 @@ impl InlineAsmRegClass {
     }
 
     /// Returns a suggested register class to use for this type. This is called
-    /// after type checking via `supported_types` fails to give a better error
+    /// when `supported_types` fails to give a better error
     /// message to the user.
     pub fn suggest_class(self, arch: InlineAsmArch, ty: InlineAsmType) -> Option<Self> {
         match self {