Skip to content

Commit 5956460

Browse files
authored
Update feature-specification.md
1 parent 4a83573 commit 5956460

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

accepted/future-releases/set-literals/feature-specification.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,9 +313,9 @@ Set v15 = const {4} // const Set<dynamic>
313313
// const _ = {Duration(seconds: 1)};
314314
// const _ = {2.3};
315315
316-
var v16 = {1, 2, 3, 2, 1}; // Set<int>
316+
var v16 = {1, 2, 3, 2, 1}; // LinkedHashSet<int>
317317
var l16 = x.toList(); // -> <int>[1, 2, 3]
318-
const v17 = {1, 2, 3, 2, 1}; // Set<int>
318+
const v17 = {1, 2, 3, 2, 1}; // const Set<int>
319319
var l17 = x.toList(); // -> <int>[1, 2, 3]
320320
// v17.add(42); // throws, immutable
321321
var l18 = const {1, 2} // const Set<int>

0 commit comments

Comments
 (0)