about summary refs log tree commit diff
path: root/src/librustc_error_codes/error_codes
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2020-05-10 12:07:34 +0000
committerbors <bors@rust-lang.org>2020-05-10 12:07:34 +0000
commit9912925c254589f58338cb2993163e618475ff75 (patch)
tree6094ba8e96c94df88be0950298d9e11da4122dae /src/librustc_error_codes/error_codes
parent8d16eeb8c9a8d6d85130b15ec9bd26df55773b12 (diff)
parentf2b655f110a3716d065d549ae144a5fcd25b0e48 (diff)
downloadrust-9912925c254589f58338cb2993163e618475ff75.tar.gz
rust-9912925c254589f58338cb2993163e618475ff75.zip
Auto merge of #72074 - RalfJung:rollup-1ns58no, r=RalfJung
Rollup of 4 pull requests

Successful merges:

 - #71840 (Rework MIR drop tree lowering)
 - #71882 (Update the `cc` crate)
 - #71945 (Sort "implementations on foreign types" section in the sidebar)
 - #72043 (Add missing backtick in E0569 explanation)

Failed merges:

r? @ghost
Diffstat (limited to 'src/librustc_error_codes/error_codes')
-rw-r--r--src/librustc_error_codes/error_codes/E0569.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_error_codes/error_codes/E0569.md b/src/librustc_error_codes/error_codes/E0569.md
index 4cba0cf9c96..2ca2b57ecac 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: