diff --git a/tracks/kotlin/exercises/flatten-array/mentoring.md b/tracks/kotlin/exercises/flatten-array/mentoring.md index 6bb530dd6..917f3a6bf 100644 --- a/tracks/kotlin/exercises/flatten-array/mentoring.md +++ b/tracks/kotlin/exercises/flatten-array/mentoring.md @@ -28,6 +28,6 @@ object Flattener { ``` ## Common suggestions -* Remember that the solution must work for any type, not just `Int`s or lists on `Int`s (although the tests only test just these cases) +* Remember that the solution must work for any type, not just `Int`s or lists of `Int`s (although the tests only test just these cases). * The `filterNotNull()` function can make your life easier. Include the nulls in your preliminary list, then filter them out. -* As a challenge, try __not__ using library function `flatMap()`, and instead find a different way \ No newline at end of file +* As a challenge, try __not__ using library function `flatMap()`, and instead find a different way.