about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 5ee8a79f621..c64f0ddac50 100644
--- a/src/librustc/diagnostics.rs
+++ b/src/librustc/diagnostics.rs
@@ -115,7 +115,7 @@ trait Trait {
 
 Now, `foo()` can no longer be called on a trait object, but you will now be
 allowed to make a trait object, and that will be able to call any object-safe
-methods". With such a bound, one can still call `foo()` on types implementing
+methods. With such a bound, one can still call `foo()` on types implementing
 that trait that aren't behind trait objects.
 
 ### Method has generic type parameters