diff options
| author | Matthew Kelly <matthew.kelly2@gmail.com> | 2022-08-27 14:36:17 -0400 |
|---|---|---|
| committer | Matthew Kelly <matthew.kelly2@gmail.com> | 2022-08-27 14:36:17 -0400 |
| commit | deadf071edf4b397523739e41b6006ee278d5341 (patch) | |
| tree | 3b6d10e0982ed9cf44df78a44c8cdc19ab4c4ead /compiler/rustc_error_codes/src | |
| parent | de3e95b56c3c1af339a6c13dc8875599e553aa98 (diff) | |
| download | rust-deadf071edf4b397523739e41b6006ee278d5341.tar.gz rust-deadf071edf4b397523739e41b6006ee278d5341.zip | |
fix trailing `]`
Diffstat (limited to 'compiler/rustc_error_codes/src')
| -rw-r--r-- | compiler/rustc_error_codes/src/error_codes/E0311.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0311.md b/compiler/rustc_error_codes/src/error_codes/E0311.md index b1fa61d365c..bc75a1f7f5e 100644 --- a/compiler/rustc_error_codes/src/error_codes/E0311.md +++ b/compiler/rustc_error_codes/src/error_codes/E0311.md @@ -16,7 +16,7 @@ fn with_restriction<'a, T: 'a>(x: &'a ()) -> &'a () { Why doesn't this code compile? It helps to look at the lifetime bounds that are automatically adding by the compiler. For more details see the Rust Documentation for Lifetime Elision: -https://doc.rust-lang.org/reference/lifetime-elision.html] +https://doc.rust-lang.org/reference/lifetime-elision.html. There are two lifetimes being passed into the `no_restriction()` function: one associated with the generic type `T` parameter and the other with the input |
