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.
2 parents bcef8df + b87a883 commit 1b55033Copy full SHA for 1b55033
tutorials/tour/_posts/2017-02-13-implicit-conversions.md
@@ -16,7 +16,7 @@ An implicit conversion from type `S` to type `T` is defined by an implicit value
16
Implicit conversions are applied in two situations:
17
18
* If an expression `e` is of type `S`, and `S` does not conform to the expression's expected type `T`.
19
-* In a selection `e.m` with `e` of type `T`, if the selector `m` does not denote a member of `T`.
+* In a selection `e.m` with `e` of type `S`, if the selector `m` does not denote a member of `S`.
20
21
In the first case, a conversion `c` is searched for which is applicable to `e` and whose result type conforms to `T`.
22
In the second case, a conversion `c` is searched for which is applicable to `e` and whose result contains a member named `m`.
0 commit comments