From 406719bf24dc33e333e70804faf7697e795bc422 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Thu, 13 Aug 2020 20:13:44 +0200 Subject: [PATCH] Improve wording --- src/librustc_error_codes/error_codes/E0752.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/librustc_error_codes/error_codes/E0752.md b/src/librustc_error_codes/error_codes/E0752.md index 77512fddcf63..d79ad06bee09 100644 --- a/src/librustc_error_codes/error_codes/E0752.md +++ b/src/librustc_error_codes/error_codes/E0752.md @@ -8,9 +8,9 @@ async fn main() -> Result { // error! } ``` -`fn main()` or the specified start function is not allowed to be `async`. You -might be seeing this error because your async runtime library is not set up -correctly. To fix it, don't declare the entry point as `async`: +`fn main()` or the specified start function is not allowed to be `async`. Not +having a correct async runtime library setup may cause this error. To fix it, +declare the entry point without `async`: ``` fn main() -> Result { // ok!