Skip to content

Commit 4a2500b

Browse files
Fix text display inconsistency (#5754)
Fixes the rendering of some inline code text within the JS to Dart article. ![Screenshot of the misformatted inline code text](https://github.com/dart-lang/site-www/assets/86067757/512fe59a-e388-4a80-b601-5522e6e8e9ad)
1 parent 12f0e6a commit 4a2500b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/guides/language/coming-from/js-to-dart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ var list2 = [1, 2, 3].map((e) {
793793

794794
:::note
795795
The `map` function in the previous examples returns
796-
an `Iterable<T`>, rather than a `List<T>`.
796+
an `Iterable<T>`, rather than a `List<T>`.
797797
The `toList` function converts the returned
798798
`Iterable` back to a `List`.
799799

0 commit comments

Comments
 (0)