chore(span,index): update documentation

This commit is contained in:
Boshen 2023-10-22 11:23:36 +08:00
parent dea9b7cbac
commit 01671729b7
No known key found for this signature in database
GPG key ID: 9C7A8C8AB22BEBD1
2 changed files with 5 additions and 1 deletions

View file

@ -1,6 +1,6 @@
//! Indexing Utilities
//!
//! <https://github.com/rust-lang/rust/tree/master/compiler/rustc_index>
//! <https://doc.rust-lang.org/beta/nightly-rustc/rustc_index>
pub use index_vec::{define_index_type, index_vec, IndexSlice, IndexVec};
pub use static_assertions::*;

View file

@ -1,3 +1,7 @@
//! Source positions and related helper functions.
//!
//! <https://doc.rust-lang.org/beta/nightly-rustc/rustc_span>
mod atom;
mod source_type;
mod span;