rustc_data_structures: fix wrong markdown syntax

This didn't produce working footnote links. The unportable markdown
lint warned about it.
This commit is contained in:
Michael Howell 2024-06-30 19:04:14 -07:00
parent cc1b3ee7f1
commit c8592da16a

View File

@ -35,11 +35,11 @@
//! | | | |
//! | `ParallelIterator` | `Iterator` | `rayon::iter::ParallelIterator` |
//!
//! [^1] `MTLock` is similar to `Lock`, but the serial version avoids the cost
//! [^1]: `MTLock` is similar to `Lock`, but the serial version avoids the cost
//! of a `RefCell`. This is appropriate when interior mutability is not
//! required.
//!
//! [^2] `MTRef`, `MTLockRef` are type aliases.
//! [^2]: `MTRef`, `MTLockRef` are type aliases.
pub use crate::marker::*;
use std::collections::HashMap;