From f615582d650d812fcdd41e3d4f03f8bb4f1b268a Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Mon, 8 Jun 2020 13:02:23 +0200 Subject: [PATCH] Clean up E0647 explanation --- src/librustc_error_codes/error_codes/E0647.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/librustc_error_codes/error_codes/E0647.md b/src/librustc_error_codes/error_codes/E0647.md index 131db38c00d2e..8ca6e777f301d 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