From 2ab8d618823a51f347407cf7299110ad42f26616 Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Fri, 5 Jul 2019 18:59:11 -0400 Subject: [PATCH] s/consts/`const` items/ Co-Authored-By: Mazdak Farrokhzad --- src/test/run-pass/existential_type_const.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/run-pass/existential_type_const.rs b/src/test/run-pass/existential_type_const.rs index f8b66167967c..1f80475cb771 100644 --- a/src/test/run-pass/existential_type_const.rs +++ b/src/test/run-pass/existential_type_const.rs @@ -2,7 +2,7 @@ #![feature(impl_trait_in_bindings)] //~^ WARN the feature `impl_trait_in_bindings` is incomplete and may cause the compiler to crash -// Ensures that consts can constrain an existential type +// Ensures that `const` items can constrain an `existential type`. use std::fmt::Debug;