about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsteveklabnik <steve@steveklabnik.com>2017-10-26 09:27:20 -0400
committersteveklabnik <steve@steveklabnik.com>2017-10-26 09:27:20 -0400
commit4c6942d26249f156ede34ddbed03765ab4f398e5 (patch)
tree7c58d10b28f0250983a72c5dc1738731e5effb8f
parentf764eaf453162cd19ef484ece07cc21e14dfb2c1 (diff)
downloadrust-4c6942d26249f156ede34ddbed03765ab4f398e5.tar.gz
rust-4c6942d26249f156ede34ddbed03765ab4f398e5.zip
Remove 'just' in diagnostics
This is better writing
-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 26f56ffacae..c9c03a2f795 100644
--- a/src/librustc/diagnostics.rs
+++ b/src/librustc/diagnostics.rs
@@ -1875,7 +1875,7 @@ fn main() {
 "##,
 
 E0601: r##"
-No `main` function was found in a binary crate. To fix this error, just add a
+No `main` function was found in a binary crate. To fix this error, add a
 `main` function. For example:
 
 ```