Update compatibility note for 1.28.0 to be correct · rust-lang/rust@bcab7e2 (original) (raw)

Original file line number Diff line number Diff line change
@@ -94,9 +94,9 @@ Misc
94 94
95 95 Compatibility Notes
96 96 -------------------
97 -- [Rust will no longer consider trait objects with duplicated constraints to
98 -have implementations.][51276] For example the below code will now fail
99 - to compile.
97 +- [Rust will consider trait objects with duplicated constraints to be the same
98 +type as without the duplicated constraint.][51276] For example the below code will
99 +now fail to compile.
100 100 ```rust
101 101 trait Trait {}
102 102