Skip to content

Commit 139bc67

Browse files
author
mejrs
committed
Fix bad replacement
1 parent a14aafa commit 139bc67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/rust-analyzer/crates/hir-ty/src/diagnostics/match_check.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! This module provides lowering from [hir_def::expr::Pat] to [self::Pat] and match
44
//! checking algorithm.
55
//!
6-
//! It is modeled on the rustc module `rustc_mir_build_thir::pattern`.
6+
//! It is modeled on the rustc module `rustc_mir_build::thir::pattern`.
77
88
mod pat_util;
99

@@ -50,7 +50,7 @@ pub(crate) struct Pat {
5050
pub(crate) kind: Box<PatKind>,
5151
}
5252

53-
/// Close relative to `rustc_mir_build_thir::pattern::PatKind`
53+
/// Close relative to `rustc_mir_build::thir::pattern::PatKind`
5454
#[derive(Clone, Debug, PartialEq)]
5555
pub(crate) enum PatKind {
5656
Wild,

0 commit comments

Comments
 (0)