about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorBastian Kauschke <bastian_kauschke@hotmail.de>2020-07-03 17:21:20 +0200
committerGitHub <noreply@github.com>2020-07-03 17:21:20 +0200
commit3ed320e87c150eea999a32b615885c408065777e (patch)
tree7a8b6461864b47f5d25a2dac8adede9e29de7b8a /src
parentf844ea1e561475e6023282ef167e76bc973773ef (diff)
downloadrust-3ed320e87c150eea999a32b615885c408065777e.tar.gz
rust-3ed320e87c150eea999a32b615885c408065777e.zip
fix typo
Diffstat (limited to 'src')
-rw-r--r--src/libcore/marker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs
index 6040dd31847..fdcfae8530a 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;
 }