diff --git a/src/content/guides/language/coming-from/js-to-dart.md b/src/content/guides/language/coming-from/js-to-dart.md index 70ad971b04..ad5b76ffbd 100644 --- a/src/content/guides/language/coming-from/js-to-dart.md +++ b/src/content/guides/language/coming-from/js-to-dart.md @@ -793,7 +793,7 @@ var list2 = [1, 2, 3].map((e) { :::note The `map` function in the previous examples returns -an `Iterable, rather than a `List`. +an `Iterable`, rather than a `List`. The `toList` function converts the returned `Iterable` back to a `List`.