]> git.lizzy.rs Git - rust.git/blobdiff - src/libproc_macro/quote.rs
Rollup merge of #69514 - GuillaumeGomez:remove-spotlight, r=kinnison
[rust.git] / src / libproc_macro / quote.rs
index e3d31b78f4a09258b398160bd9185d5f2671e80a..144e2d6bac43bb3061ecbb3c785965732e56c7e5 100644 (file)
@@ -57,9 +57,9 @@ macro_rules! quote {
 }
 
 /// Quote a `TokenStream` into a `TokenStream`.
-/// This is the actual `quote!()` proc macro.
+/// This is the actual implementation of the `quote!()` proc macro.
 ///
-/// It is manually loaded in `CStore::load_macro_untracked`.
+/// It is loaded by the compiler in `register_builtin_macros`.
 #[unstable(feature = "proc_macro_quote", issue = "54722")]
 pub fn quote(stream: TokenStream) -> TokenStream {
     if stream.is_empty() {