From a802f9aad9893d93a8907b09eada07c49e61e4e1 Mon Sep 17 00:00:00 2001 From: Abrasha Date: Tue, 25 Jul 2017 17:02:48 +0300 Subject: [PATCH] - fix wrong method name --- tutorials/FAQ/finding-implicits.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/FAQ/finding-implicits.md b/tutorials/FAQ/finding-implicits.md index 8847ce812c..3117e5dc0d 100644 --- a/tutorials/FAQ/finding-implicits.md +++ b/tutorials/FAQ/finding-implicits.md @@ -86,7 +86,7 @@ The method `getIndex` can receive any object, as long as there is an implicit conversion available from its class to `Seq[T]`. Because of that, a `String` can be passed to `getIndex`, and it will work. -Behind the scenes, the compiler changes `seq.IndexOf(value)` to +Behind the scenes, the compiler changes `seq.indexOf(value)` to `conv(seq).indexOf(value)`. ### Context Bounds