about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2020-06-08 13:02:23 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2020-06-08 13:02:59 +0200
commitf615582d650d812fcdd41e3d4f03f8bb4f1b268a (patch)
treef70a17fc909b282e506db5ac9e85130f42308762
parent680a4b2fbdca0dc6c5ceec826a8dbeabe28f305d (diff)
downloadrust-f615582d650d812fcdd41e3d4f03f8bb4f1b268a.tar.gz
rust-f615582d650d812fcdd41e3d4f03f8bb4f1b268a.zip
Clean up E0647 explanation
-rw-r--r--src/librustc_error_codes/error_codes/E0647.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustc_error_codes/error_codes/E0647.md b/src/librustc_error_codes/error_codes/E0647.md
index 131db38c00d..8ca6e777f30 100644
--- a/src/librustc_error_codes/error_codes/E0647.md
+++ b/src/librustc_error_codes/error_codes/E0647.md
@@ -1,4 +1,5 @@
-It is not possible to define `start` with a where clause.
+The `start` function was defined with a where clause.
+
 Erroneous code example:
 
 ```compile_fail,E0647