Просмотр исходного кода

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 месяцев назад
Родитель
Сommit
4edd2ced62
1 измененных файлов с 1 добавлено и 1 удалено
  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
 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
 [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