From 3ed320e87c150eea999a32b615885c408065777e Mon Sep 17 00:00:00 2001 From: Bastian Kauschke Date: Fri, 3 Jul 2020 17:21:20 +0200 Subject: [PATCH] fix typo --- src/libcore/marker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs index 6040dd31847a9..fdcfae8530a3b 100644 --- a/src/libcore/marker.rs +++ b/src/libcore/marker.rs @@ -694,7 +694,7 @@ mod impls { )] #[lang = "discriminant_kind"] pub trait DiscriminantKind { - /// The type of the dicriminant, which must satisfy the trait + /// The type of the discriminant, which must satisfy the trait /// bounds required by `mem::Discriminant`. type Discriminant: Clone + Copy + Debug + Eq + PartialEq + Hash + Send + Sync + Unpin; }