Skip to content

Commit a802f9a

Browse files
committed
- fix wrong method name
1 parent 7469514 commit a802f9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/FAQ/finding-implicits.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The method `getIndex` can receive any object, as long as there is an implicit
8686
conversion available from its class to `Seq[T]`. Because of that, a `String` can be
8787
passed to `getIndex`, and it will work.
8888

89-
Behind the scenes, the compiler changes `seq.IndexOf(value)` to
89+
Behind the scenes, the compiler changes `seq.indexOf(value)` to
9090
`conv(seq).indexOf(value)`.
9191

9292
### Context Bounds

0 commit comments

Comments
 (0)