diff --git a/src/expressions/method-call-expr.md b/src/expressions/method-call-expr.md index 0810071a3f0c9..62859cffdfe73 100644 --- a/src/expressions/method-call-expr.md +++ b/src/expressions/method-call-expr.md @@ -2,9 +2,9 @@ A _method call_ consists of an expression (the *receiver*) followed by a single dot, an [identifier], and a parenthesized expression-list. Method calls are -resolved to methods on specific traits, either statically dispatching to a -method if the exact `self`-type of the left-hand-side is known, or dynamically -dispatching if the left-hand-side expression is an indirect [trait +resolved to associated methods of specific types, either statically dispatching +to a method if the exact `self`-type of the left-hand-side is known, or +dynamically dispatching if the left-hand-side expression is an indirect [trait object](types.html#trait-objects). ```rust