about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-07-04 05:11:57 +0000
committerbors <bors@rust-lang.org>2024-07-04 05:11:57 +0000
commit4a4a81aec43d87abc962cb288af104531086afe8 (patch)
treed3be0ce1b9ff8dada8e736c6921bb9b5c134dffd /compiler/rustc_data_structures/src
parentb0d791d3cf13a7b61b3db49591b432d88af2aec8 (diff)
parentd24bfd48b25a3aced787a774c9d679956f164cc6 (diff)
downloadrust-4a4a81aec43d87abc962cb288af104531086afe8.tar.gz
rust-4a4a81aec43d87abc962cb288af104531086afe8.zip
Auto merge of #3731 - rust-lang:rustup-2024-07-04, r=saethlin
Automatic Rustup
Diffstat (limited to 'compiler/rustc_data_structures/src')
-rw-r--r--compiler/rustc_data_structures/src/sync.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_data_structures/src/sync.rs b/compiler/rustc_data_structures/src/sync.rs
index 79ceb28abb5..058a675c40d 100644
--- a/compiler/rustc_data_structures/src/sync.rs
+++ b/compiler/rustc_data_structures/src/sync.rs
@@ -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;