about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2024-09-07 14:21:23 +0300
committerGitHub <noreply@github.com>2024-09-07 14:21:23 +0300
commitb09b7da0103cb3cdef3387cb8c3b14e582efca4b (patch)
tree04e40c442ea3a63f51423bbb96dd309c4cf50ec3
parent9936179769189073048b833260d7f7357150cfb9 (diff)
parentbe10d56039a7299ac0110b2fc70ec155f680b97a (diff)
downloadrust-b09b7da0103cb3cdef3387cb8c3b14e582efca4b.tar.gz
rust-b09b7da0103cb3cdef3387cb8c3b14e582efca4b.zip
Rollup merge of #130054 - cuishuang:master, r=chenyukang
Add missing quotation marks
-rw-r--r--tests/ui/const-generics/invariant.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/const-generics/invariant.rs b/tests/ui/const-generics/invariant.rs
index ee4ad4e7c4e..95a28b61dde 100644
--- a/tests/ui/const-generics/invariant.rs
+++ b/tests/ui/const-generics/invariant.rs
@@ -5,7 +5,7 @@ use std::marker::PhantomData;
 trait SadBee {
     const ASSOC: usize;
 }
-// fn(&'static ())` is a supertype of `for<'a> fn(&'a ())` while
+// `fn(&'static ())` is a supertype of `for<'a> fn(&'a ())` while
 // we allow two different impls for these types, leading
 // to different const eval results.
 impl SadBee for for<'a> fn(&'a ()) {