From 8f58a71a88e1201341a026992da4707c8a4e62cf Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Tue, 3 Dec 2019 16:28:24 -0500 Subject: [PATCH] Fix missed nit Co-Authored-By: Ralf Jung --- src/librustc/traits/engine.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc/traits/engine.rs b/src/librustc/traits/engine.rs index 75b23a722b9dc..b4e3e2f64e0da 100644 --- a/src/librustc/traits/engine.rs +++ b/src/librustc/traits/engine.rs @@ -105,7 +105,7 @@ impl dyn TraitEngine<'tcx> { /// Creates a `TraitEngine` in a special 'delay generator witness' mode. /// This imposes additional requirements for the caller in order to avoid /// accepting unsound code, and should only be used by `FnCtxt`. All other - /// users of `TraitEngine` should use `TraitEngine::new` + /// users of `TraitEngine` should use `TraitEngine::new`. /// /// A `TraitEngine` returned by this constructor will not attempt /// to resolve any `GeneratorWitness` predicates involving auto traits,