Skip to content

Commit c8592da

Browse files
committed
rustc_data_structures: fix wrong markdown syntax
This didn't produce working footnote links. The unportable markdown lint warned about it.
1 parent cc1b3ee commit c8592da

File tree

1 file changed

+2
-2
lines changed
  • compiler/rustc_data_structures/src

1 file changed

+2
-2
lines changed

compiler/rustc_data_structures/src/sync.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
//! | | | |
3636
//! | `ParallelIterator` | `Iterator` | `rayon::iter::ParallelIterator` |
3737
//!
38-
//! [^1] `MTLock` is similar to `Lock`, but the serial version avoids the cost
38+
//! [^1]: `MTLock` is similar to `Lock`, but the serial version avoids the cost
3939
//! of a `RefCell`. This is appropriate when interior mutability is not
4040
//! required.
4141
//!
42-
//! [^2] `MTRef`, `MTLockRef` are type aliases.
42+
//! [^2]: `MTRef`, `MTLockRef` are type aliases.
4343
4444
pub use crate::marker::*;
4545
use std::collections::HashMap;

0 commit comments

Comments
 (0)