diff options
| author | Dylan DPC <dylan.dpc@gmail.com> | 2020-06-07 02:29:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-07 02:29:00 +0200 |
| commit | 71230e135b2c7b7906389796c81f74c490d5e380 (patch) | |
| tree | dde5572e83ef021def7499e630874e53b3d69c04 | |
| parent | 101e59361e3648468e900b04e0f8a94f628c4681 (diff) | |
| parent | 392c6f45a49ebf279116c066f300792fcdaff29f (diff) | |
| download | rust-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.md | 2 |
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) |
