about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJack Huey <31162821+jackh726@users.noreply.github.com>2022-08-16 14:29:19 -0400
committerJack Huey <31162821+jackh726@users.noreply.github.com>2022-10-23 18:46:16 -0400
commit65ef62597b82778a1cb7b295932663671a0156c8 (patch)
tree0c87bb03671be18c53fa3ca63d1a7e54a5c5c1d3
parentba847cad6d1403feed2bba8b501c69d0a749f6de (diff)
downloadrust-65ef62597b82778a1cb7b295932663671a0156c8.tar.gz
rust-65ef62597b82778a1cb7b295932663671a0156c8.zip
Apply suggestions from code review
Use ticks around abis.

Co-authored-by: Esteban Kuber <estebank@users.noreply.github.com>
-rw-r--r--compiler/rustc_hir_analysis/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_hir_analysis/src/lib.rs b/compiler/rustc_hir_analysis/src/lib.rs
index 782c95d6335..46d57563a4f 100644
--- a/compiler/rustc_hir_analysis/src/lib.rs
+++ b/compiler/rustc_hir_analysis/src/lib.rs
@@ -119,10 +119,10 @@ use bounds::Bounds;
 
 fn require_c_abi_if_c_variadic(tcx: TyCtxt<'_>, decl: &hir::FnDecl<'_>, abi: Abi, span: Span) {
     const ERROR_HEAD: &str = "C-variadic function must have a compatible calling convention";
-    const CONVENTIONS_UNSTABLE: &str = "C, cdecl, win64, sysv64 or efiapi";
-    const CONVENTIONS_STABLE: &str = "C or cdecl";
+    const CONVENTIONS_UNSTABLE: &str = "`C`, `cdecl`, `win64`, `sysv64` or `efiapi`";
+    const CONVENTIONS_STABLE: &str = "`C` or `cdecl`";
     const UNSTABLE_EXPLAIN: &str =
-        "using different calling convention than C or cdecl for varargs functions is unstable";
+        "using different calling convention than `C` or `cdecl` for varargs functions is unstable";
 
     if !decl.c_variadic || matches!(abi, Abi::C { .. } | Abi::Cdecl { .. }) {
         return;