about summary refs log tree commit diff
diff options
context:
space:
mode:
authorchristopherdumas <christopherdumas@me.com>2015-09-05 20:23:26 -0700
committerchristopherdumas <christopherdumas@me.com>2015-09-05 20:23:26 -0700
commita8a8dfbe1a0aa917fb392bb8f3c037ef6a1ef27f (patch)
treee704003ab6340433268879f8ac7d19111dd222ed
parent1eb726217d3a8ff8849594e88df068c4a13fbdc9 (diff)
downloadrust-a8a8dfbe1a0aa917fb392bb8f3c037ef6a1ef27f.tar.gz
rust-a8a8dfbe1a0aa917fb392bb8f3c037ef6a1ef27f.zip
Line longer that 80 chars.
-rw-r--r--src/librustc_typeck/diagnostics.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_typeck/diagnostics.rs b/src/librustc_typeck/diagnostics.rs
index a7f1b7198e2..4e9bcab2e9c 100644
--- a/src/librustc_typeck/diagnostics.rs
+++ b/src/librustc_typeck/diagnostics.rs
@@ -1535,8 +1535,8 @@ For information on the design of the orphan rules, see [RFC 1023].
 
 E0118: r##"
 Rust can't find a base type for an implementation you are providing, or the type
-cannot have an implementation. For example, a typedef can't have an implementation,
-since it isn't its own type (this was done in PR #6087):
+cannot have an implementation. For example, a typedef can't have an
+implementation, since it isn't its own type (this was done in PR #6087):
 
 ```
 type NineString = [char, ..9]