about summary refs log tree commit diff
path: root/compiler/rustc_mir_transform/src
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2023-03-03 04:10:46 +0100
committerest31 <MTest31@outlook.com>2023-03-03 08:39:00 +0100
commitff2c609d662f0ffae9aafa6ff9f60441473e958e (patch)
treea338e1cc18f26471b3c782edcd7e97cfec18132f /compiler/rustc_mir_transform/src
parent13471d3b2046cce78181dde6cfc146c09f55e29e (diff)
downloadrust-ff2c609d662f0ffae9aafa6ff9f60441473e958e.tar.gz
rust-ff2c609d662f0ffae9aafa6ff9f60441473e958e.zip
Match unmatched backticks in compiler/ that are part of rustdoc
Diffstat (limited to 'compiler/rustc_mir_transform/src')
-rw-r--r--compiler/rustc_mir_transform/src/coverage/spans.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_mir_transform/src/coverage/spans.rs b/compiler/rustc_mir_transform/src/coverage/spans.rs
index f973c1ed28f..012ad8bfa6e 100644
--- a/compiler/rustc_mir_transform/src/coverage/spans.rs
+++ b/compiler/rustc_mir_transform/src/coverage/spans.rs
@@ -694,7 +694,7 @@ impl<'a, 'tcx> CoverageSpans<'a, 'tcx> {
     /// `prev.span.hi()` will be greater than (further right of) `prev_original_span.hi()`.
     /// If prev.span() was split off to the right of a closure, prev.span().lo() will be
     /// greater than prev_original_span.lo(). The actual span of `prev_original_span` is
-    /// not as important as knowing that `prev()` **used to have the same span** as `curr(),
+    /// not as important as knowing that `prev()` **used to have the same span** as `curr()`,
     /// which means their sort order is still meaningful for determining the dominator
     /// relationship.
     ///