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-03-29 06:33:42 +0000
committerbors <bors@rust-lang.org>2020-03-29 06:33:42 +0000
commit8045865873f7cdbb864d0f66ef5ecb0d3ad847b2 (patch)
treebe3960d74254f4b099b6969d00c6c84a014dd1ec /src/librustc_error_codes/error_codes
parent150322f86d441752874a8bed603d71119f190b8b (diff)
parent733230530522d9f535b95d5bc304b11a94e2239c (diff)
downloadrust-8045865873f7cdbb864d0f66ef5ecb0d3ad847b2.tar.gz
rust-8045865873f7cdbb864d0f66ef5ecb0d3ad847b2.zip
Auto merge of #70370 - petrochenkov:nosmatch, r=Centril
Remove attribute `#[structural_match]` and any references to it

A small remaining part of https://github.com/rust-lang/rust/issues/63438.
Diffstat (limited to 'src/librustc_error_codes/error_codes')
-rw-r--r--src/librustc_error_codes/error_codes/E0741.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_error_codes/error_codes/E0741.md b/src/librustc_error_codes/error_codes/E0741.md
index 804260809e9..0a8650282a3 100644
--- a/src/librustc_error_codes/error_codes/E0741.md
+++ b/src/librustc_error_codes/error_codes/E0741.md
@@ -1,4 +1,4 @@
-Only `structural_match` types (that is, types that derive `PartialEq` and `Eq`)
+Only structural-match types (that is, types that derive `PartialEq` and `Eq`)
 may be used as the types of const generic parameters.
 
 ```compile_fail,E0741