From e0c0c3b96f96bcb95153c8813c0969c780662dc9 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Sat, 9 May 2020 13:48:11 +0200 Subject: [PATCH] Add missing backtick in E0569 explanation --- src/librustc_error_codes/error_codes/E0569.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_error_codes/error_codes/E0569.md b/src/librustc_error_codes/error_codes/E0569.md index 4cba0cf9c96ba..2ca2b57ecace5 100644 --- a/src/librustc_error_codes/error_codes/E0569.md +++ b/src/librustc_error_codes/error_codes/E0569.md @@ -1,5 +1,5 @@ If an impl has a generic parameter with the `#[may_dangle]` attribute, then -that impl must be declared as an `unsafe impl. +that impl must be declared as an `unsafe impl`. Erroneous code example: