about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-12-06 23:13:51 +0100
committerGitHub <noreply@github.com>2022-12-06 23:13:51 +0100
commit280501d6bc151d3b963d702c88d74c10f925158f (patch)
tree7a9635a44c4f85fcec991c9f71dd780ef86f641a
parentb3a69bf34ee8fda73d51eabdafaee2d632c842ef (diff)
parent0070fae2dcbcdef6f107fc0acb2f078412b1e6fb (diff)
downloadrust-280501d6bc151d3b963d702c88d74c10f925158f.tar.gz
rust-280501d6bc151d3b963d702c88d74c10f925158f.zip
Rollup merge of #105382 - BoxyUwU:fixme_typo_sadface, r=lcnr
remove an excess `this`
-rw-r--r--compiler/rustc_trait_selection/src/traits/const_evaluatable.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_trait_selection/src/traits/const_evaluatable.rs b/compiler/rustc_trait_selection/src/traits/const_evaluatable.rs
index d01c6bac296..7cc0999478a 100644
--- a/compiler/rustc_trait_selection/src/traits/const_evaluatable.rs
+++ b/compiler/rustc_trait_selection/src/traits/const_evaluatable.rs
@@ -64,7 +64,7 @@ pub fn is_const_evaluatable<'tcx>(
             ty::ConstKind::Expr(_) => {
                 // FIXME(generic_const_exprs): we have a `ConstKind::Expr` which is fully concrete, but
                 // currently it is not possible to evaluate `ConstKind::Expr` so we are unable to tell if it
-                // is evaluatable or not. For now we just ICE until this is implemented this.
+                // is evaluatable or not. For now we just ICE until this is implemented.
                 Err(NotConstEvaluatable::Error(tcx.sess.delay_span_bug(
                     span,
                     "evaluating `ConstKind::Expr` is not currently supported",