Rollup merge of #69732 - GuillaumeGomez:cleanup-e0382-e0384, r=Dylan-DPC

Clean E0382 and E0384 explanations

r? @Dylan-DPC
This commit is contained in:
Dylan DPC 2020-03-05 22:04:09 +01:00 committed by GitHub
commit 558115b86c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,4 @@
This error occurs when an attempt is made to use a variable after its contents
have been moved elsewhere.
A variable was used after its contents have been moved elsewhere.
Erroneous code example:

View File

@ -1,4 +1,4 @@
This error occurs when an attempt is made to reassign an immutable variable.
An immutable variable was reassigned.
Erroneous code example: