From 9332505bd01f0395bea55f20b735e27da3c3b7cc Mon Sep 17 00:00:00 2001 From: Alexis Hunt Date: Sun, 18 Mar 2018 12:31:50 -0400 Subject: [PATCH] Clarify that method calls can go on any type. --- src/expressions/method-call-expr.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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