about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/librustc/diagnostics.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/diagnostics.rs b/src/librustc/diagnostics.rs
index 1e10329bb55..6644175bbd8 100644
--- a/src/librustc/diagnostics.rs
+++ b/src/librustc/diagnostics.rs
@@ -1187,7 +1187,7 @@ impl Generator for AnotherImpl {
 fn main() {
     let cont: u32 = Generator::create();
     // error, impossible to choose one of Generator trait implementation
-    // Impl or AnotherImpl? Maybe anything else?
+    // Should it be Impl or AnotherImpl, maybe something else?
 }
 ```