From 4af2e0e8bcdaa0b974ef8539becbe9854347b766 Mon Sep 17 00:00:00 2001 From: Jack Yang <40880461+yangjack1998@users.noreply.github.com> Date: Thu, 28 Jul 2022 10:52:48 -0400 Subject: [PATCH] Update Lists.scala --- src/main/scala/stdlib/Lists.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/scala/stdlib/Lists.scala b/src/main/scala/stdlib/Lists.scala index 2b97e09f..65ebcd99 100644 --- a/src/main/scala/stdlib/Lists.scala +++ b/src/main/scala/stdlib/Lists.scala @@ -140,7 +140,7 @@ object Lists extends AnyFlatSpec with Matchers with org.scalaexercises.definitio } /** - * Functions over lists can use _ as shorthand: + * Functions over lists can use `()` instead of `{}`: */ def wildcardAsShorthandLists(res0: Int, res1: Int, res2: Int, res3: Int) = { val a = List(1, 2, 3) @@ -155,7 +155,7 @@ object Lists extends AnyFlatSpec with Matchers with org.scalaexercises.definitio } /** - * Functions over lists can use `()` instead of `{}`: + * Functions over lists can use _ as shorthand: */ def functionsOverListsLists(res0: Int, res1: Int, res2: Int, res3: Int, res4: Int) = { val a = List(1, 2, 3)