diff options
| author | Tomoki Aonuma <uasi@uasi.jp> | 2016-05-02 14:20:22 +0900 |
|---|---|---|
| committer | Tomoki Aonuma <uasi@uasi.jp> | 2016-05-02 14:20:51 +0900 |
| commit | ee7a68d48bfda1df361cf015de36bcb92ee01fe6 (patch) | |
| tree | b609ba9bad25f7afefcaa89f8e513ec6928ccbfd | |
| parent | 855fb6192263a5c059325bb4b4e10b55e4e8ddbb (diff) | |
| download | rust-ee7a68d48bfda1df361cf015de36bcb92ee01fe6.tar.gz rust-ee7a68d48bfda1df361cf015de36bcb92ee01fe6.zip | |
Fix minor typo in E0038
| -rw-r--r-- | src/librustc/diagnostics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/diagnostics.rs b/src/librustc/diagnostics.rs index e230836ef45..c26224edbcd 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 |
