We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3f5c9c9 + 9332505 commit 36fec1cCopy full SHA for 36fec1c
src/expressions/method-call-expr.md
@@ -2,9 +2,9 @@
2
3
A _method call_ consists of an expression (the *receiver*) followed by a single
4
dot, an [identifier], and a parenthesized expression-list. Method calls are
5
-resolved to methods on specific traits, either statically dispatching to a
6
-method if the exact `self`-type of the left-hand-side is known, or dynamically
7
-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
8
object](types.html#trait-objects).
9
10
```rust
0 commit comments