about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-06-07 02:29:00 +0200
committerGitHub <noreply@github.com>2020-06-07 02:29:00 +0200
commit71230e135b2c7b7906389796c81f74c490d5e380 (patch)
treedde5572e83ef021def7499e630874e53b3d69c04
parent101e59361e3648468e900b04e0f8a94f628c4681 (diff)
parent392c6f45a49ebf279116c066f300792fcdaff29f (diff)
downloadrust-71230e135b2c7b7906389796c81f74c490d5e380.tar.gz
rust-71230e135b2c7b7906389796c81f74c490d5e380.zip
Rollup merge of #73057 - GuillaumeGomez:cleanup-e0644, r=Dylan-DPC
Clean up E0644 explanation

r? @Dylan-DPC
-rw-r--r--src/librustc_error_codes/error_codes/E0644.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_error_codes/error_codes/E0644.md b/src/librustc_error_codes/error_codes/E0644.md
index 277643dfb1a..8c68da3b2f3 100644
--- a/src/librustc_error_codes/error_codes/E0644.md
+++ b/src/librustc_error_codes/error_codes/E0644.md
@@ -1,6 +1,6 @@
 A closure or generator was constructed that references its own type.
 
-Erroneous example:
+Erroneous code example:
 
 ```compile_fail,E0644
 fn fix<F>(f: &F)