We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f5c9c9 commit 9332505Copy full SHA for 9332505
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