about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Moelius <35515885+smoelius@users.noreply.github.com>2023-05-02 19:02:06 -0400
committerGitHub <noreply@github.com>2023-05-02 19:02:06 -0400
commit7e24ff33e4a940df392e5329e18e6bc05f882088 (patch)
treedab2fc38fba1e3649ae904c800e09e038e785490
parent824f2e701c2c03b355ced3beae9898c45ce80db3 (diff)
Update macros.rs
-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);