We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a14aafa commit 139bc67Copy full SHA for 139bc67
src/tools/rust-analyzer/crates/hir-ty/src/diagnostics/match_check.rs
@@ -3,7 +3,7 @@
3
//! This module provides lowering from [hir_def::expr::Pat] to [self::Pat] and match
4
//! checking algorithm.
5
//!
6
-//! It is modeled on the rustc module `rustc_mir_build_thir::pattern`.
+//! It is modeled on the rustc module `rustc_mir_build::thir::pattern`.
7
8
mod pat_util;
9
@@ -50,7 +50,7 @@ pub(crate) struct Pat {
50
pub(crate) kind: Box<PatKind>,
51
}
52
53
-/// Close relative to `rustc_mir_build_thir::pattern::PatKind`
+/// Close relative to `rustc_mir_build::thir::pattern::PatKind`
54
#[derive(Clone, Debug, PartialEq)]
55
pub(crate) enum PatKind {
56
Wild,
0 commit comments