From 632f3de12bc71167485253510b2e1644b25302ce Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Mon, 25 May 2020 13:03:38 +0200 Subject: [PATCH] Clean up E0608 explanation --- src/librustc_error_codes/error_codes/E0608.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_error_codes/error_codes/E0608.md b/src/librustc_error_codes/error_codes/E0608.md index 598f1e655e964..d0ebc3a26f082 100644 --- a/src/librustc_error_codes/error_codes/E0608.md +++ b/src/librustc_error_codes/error_codes/E0608.md @@ -1,4 +1,4 @@ -An attempt to index into a type which doesn't implement the `std::ops::Index` +An attempt to use index on a type which doesn't implement the `std::ops::Index` trait was performed. Erroneous code example: