]> git.lizzy.rs Git - rust.git/blobdiff - src/test/rustdoc/comment-in-doctest.rs
Rollup merge of #71829 - kper:issue71136, r=matthewjasper
[rust.git] / src / test / rustdoc / comment-in-doctest.rs
index e4e41bc7ce308019a428d47f36a77886a7cbd0bc..5691d173569a7651e7893be036455ec6296f0dcc 100644 (file)
@@ -1,7 +1,7 @@
 // compile-flags:--test
 
 // comments, both doc comments and regular ones, used to trick rustdoc's doctest parser into
-// thinking that everything after it was part of the regular program. combined with the libsyntax
+// thinking that everything after it was part of the regular program. combined with the librustc_ast
 // parser loop failing to detect the manual main function, it would wrap everything in `fn main`,
 // which would cause the doctest to fail as the "extern crate" declaration was no longer valid.
 // oddly enough, it would pass in 2018 if a crate was in the extern prelude. see