Skip to content

Commit

Permalink
rustc_data_structures: fix wrong markdown syntax
Browse files Browse the repository at this point in the history
This didn't produce working footnote links. The unportable markdown
lint warned about it.
  • Loading branch information
notriddle committed Jul 1, 2024
1 parent 5ab8f8b commit cc57a5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/rustc_data_structures/src/sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit cc57a5b

Please sign in to comment.