about summary refs log tree commit diff
path: root/compiler/rustc_smir/src/lib.rs
diff options
context:
space:
mode:
authorLukas Markeffsky <@>2023-07-13 22:25:21 +0200
committerLukas Markeffsky <@>2023-07-14 09:41:42 +0000
commit9d6bfc281d35abf9f7b95f79538a0101a628c519 (patch)
tree5e061c03efe1efb327b6615122f7c5c565afdbd8 /compiler/rustc_smir/src/lib.rs
parentb1a5423ff8e2284a02aa75bf4467c9f49bb2e95b (diff)
downloadrust-9d6bfc281d35abf9f7b95f79538a0101a628c519.tar.gz
rust-9d6bfc281d35abf9f7b95f79538a0101a628c519.zip
fix docs for `rustc_smir`
Diffstat (limited to 'compiler/rustc_smir/src/lib.rs')
-rw-r--r--compiler/rustc_smir/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_smir/src/lib.rs b/compiler/rustc_smir/src/lib.rs
index 8450bb73119..6ebba56c76d 100644
--- a/compiler/rustc_smir/src/lib.rs
+++ b/compiler/rustc_smir/src/lib.rs
@@ -1,6 +1,6 @@
 //! The WIP stable interface to rustc internals.
 //!
-//! For more information see https://github.com/rust-lang/project-stable-mir
+//! For more information see <https://github.com/rust-lang/project-stable-mir>
 //!
 //! # Note
 //!
@@ -14,6 +14,7 @@
 #![feature(local_key_cell_methods)]
 #![feature(ptr_metadata)]
 #![feature(type_alias_impl_trait)] // Used to define opaque types.
+#![feature(intra_doc_pointers)]
 
 // Declare extern rustc_* crates to enable building this crate separately from the compiler.
 #[cfg(not(feature = "default"))]