File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -2257,7 +2257,7 @@ mod await_keyword {}
2257
2257
/// `dyn` is a prefix of a [trait object]'s type.
2258
2258
///
2259
2259
/// The `dyn` keyword is used to highlight that calls to methods on the associated `Trait`
2260
- /// are dynamically dispatched. To use the trait this way, it must be 'object safe'.
2260
+ /// are [ dynamically dispatched] . To use the trait this way, it must be 'object safe'.
2261
2261
///
2262
2262
/// Unlike generic parameters or `impl Trait`, the compiler does not know the concrete type that
2263
2263
/// is being passed. That is, the type has been [erased].
@@ -2281,6 +2281,7 @@ mod await_keyword {}
2281
2281
/// the method won't be duplicated for each concrete type.
2282
2282
///
2283
2283
/// [trait object]: ../book/ch17-02-trait-objects.html
2284
+ /// [dynamically dispatched]: https://en.wikipedia.org/wiki/Dynamic_dispatch
2284
2285
/// [ref-trait-obj]: ../reference/types/trait-object.html
2285
2286
/// [ref-obj-safety]: ../reference/items/traits.html#object-safety
2286
2287
/// [erased]: https://en.wikipedia.org/wiki/Type_erasure
You can’t perform that action at this time.
0 commit comments