about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-05-03 10:34:39 +0000
committerbors <bors@rust-lang.org>2023-05-03 10:34:39 +0000
commitc2e0d43485eff8a73c61d9118cd8ed5a1a292007 (patch)
tree14fccffe8e308e3f7f84e24ba721060e0f3a4ea8
parent9353170dfb3298746800eab8d2be846b5b503866 (diff)
parent7e24ff33e4a940df392e5329e18e6bc05f882088 (diff)
downloadrust-c2e0d43485eff8a73c61d9118cd8ed5a1a292007.tar.gz
rust-c2e0d43485eff8a73c61d9118cd8ed5a1a292007.zip
Auto merge of #10734 - smoelius:patch-2, r=Alexendoo
Update macros.rs (typo)

r? `@Alexendoo`

changelog: none
-rw-r--r--clippy_utils/src/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_utils/src/macros.rs b/clippy_utils/src/macros.rs
index 62d388a5ece..e4a4936ff42 100644
--- a/clippy_utils/src/macros.rs
+++ b/clippy_utils/src/macros.rs
@@ -362,7 +362,7 @@ thread_local! {
     /// able to access the many features of a [`LateContext`].
     ///
     /// A thread local is used because [`FormatArgs`] is `!Send` and `!Sync`, we are making an
-    /// assumption that the early pass the populates the map and the later late passes will all be
+    /// assumption that the early pass that populates the map and the later late passes will all be
     /// running on the same thread.
     static AST_FORMAT_ARGS: RefCell<FxHashMap<Span, FormatArgs>> = {
         static CALLED: AtomicBool = AtomicBool::new(false);