Bläddra i källkod

docs/design: object-safe has been named to dyn-compatible (#6081)

Just a small fix to docs/design.

Co-authored-by: Burak Emir <bqe@google.com>
Burak Emir 7 månader sedan
förälder
incheckning
4edd2ced62
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      docs/design/generics/appendix-witness.md

+ 1 - 1
docs/design/generics/appendix-witness.md

@@ -99,7 +99,7 @@ arguments and return values with a size only known at runtime.
 
 
 For this reason, Rust's dynamic trait dispatch system, trait objects, only works
 For this reason, Rust's dynamic trait dispatch system, trait objects, only works
 with traits that are
 with traits that are
-["object safe,"](https://doc.rust-lang.org/reference/items/traits.html#object-safety)
+["dyn-compatible,"](https://doc.rust-lang.org/reference/items/traits.html#dyn-compatibility)
 which includes a requirement that
 which includes a requirement that
 [all the associated types have specified values](https://github.com/rust-lang/rfcs/blob/master/text/0195-associated-items.md#trait-objects).
 [all the associated types have specified values](https://github.com/rust-lang/rfcs/blob/master/text/0195-associated-items.md#trait-objects).
 This reduces the expressivity of Rust traits to the subset that could be
 This reduces the expressivity of Rust traits to the subset that could be