about summary refs log tree commit diff
path: root/src/test/rustdoc/comment-in-doctest.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/comment-in-doctest.rs')
-rw-r--r--src/test/rustdoc/comment-in-doctest.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/rustdoc/comment-in-doctest.rs b/src/test/rustdoc/comment-in-doctest.rs
index e4e41bc7ce3..5691d173569 100644
--- a/src/test/rustdoc/comment-in-doctest.rs
+++ b/src/test/rustdoc/comment-in-doctest.rs
@@ -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