diff --git a/src/glossary.md b/src/glossary.md index dabd65d7c..ddeabeb52 100644 --- a/src/glossary.md +++ b/src/glossary.md @@ -62,10 +62,7 @@ root, including through [paths] of public modules. ### Dispatch -Dispatch is the mechanism to determine which specific version of code is actually -run when it involves polymorphism. Two major forms of dispatch are static dispatch and -dynamic dispatch. While Rust favors static dispatch, it also supports dynamic dispatch -through a mechanism called ‘trait objects’. +Dispatch is the mechanism to determine which specific version of code is actually run when it involves polymorphism. Two major forms of dispatch are static dispatch and dynamic dispatch. Rust supports dynamic dispatch through the use of [trait objects][type.trait-object]. ### Dynamically sized type