From 06fd1b8e71da15d22ab0ec7253605d626a3e0a2c Mon Sep 17 00:00:00 2001 From: Clinton Montague Date: Fri, 9 Dec 2016 17:34:09 +0000 Subject: [PATCH] Fix typo in zipWithIndex exercise --- src/main/scala/stdlib/Iterables.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/stdlib/Iterables.scala b/src/main/scala/stdlib/Iterables.scala index 0a227f80..42c29a99 100644 --- a/src/main/scala/stdlib/Iterables.scala +++ b/src/main/scala/stdlib/Iterables.scala @@ -109,7 +109,7 @@ object Iterables extends FlatSpec with Matchers with org.scalaexercises.definiti } - /** `zipWithIndex` will zip an Iterable with it's integer index + /** `zipWithIndex` will zip an Iterable with its integer index */ def zipWithIndexIterables(res0: String, res1: String, res2: Int, res3: String) { val xs = List("Manny", "Moe", "Jack")