From d8e0a31a615a80987750629af5e01e111216eac8 Mon Sep 17 00:00:00 2001 From: marcogalluzzi Date: Sat, 18 May 2024 14:59:23 +0100 Subject: [PATCH] Update multiple-parameter-lists.md Referencing new Scala 3 keyword `using` --- _tour/multiple-parameter-lists.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_tour/multiple-parameter-lists.md b/_tour/multiple-parameter-lists.md index 632a5ab4f..5b042629d 100644 --- a/_tour/multiple-parameter-lists.md +++ b/_tour/multiple-parameter-lists.md @@ -117,7 +117,7 @@ This definition doesn't need any type hints and can infer all of its type parame #### Implicit parameters -To specify only certain parameters as [`implicit`](https://docs.scala-lang.org/tour/implicit-parameters.html), they must be placed in their own `implicit` parameter list. +To specify only certain parameters as [`implicit`](https://docs.scala-lang.org/tour/implicit-parameters.html), they must be placed in their own parameter list starting with the keyword `using` (or `implicit` in Scala 2). An example of this is: