Skip to content

Commit 989784d

Browse files
authored
Fix wrong example print. (#2436)
1 parent 65caefe commit 989784d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

working/0546-patterns/records-feature-specification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ and returns the resulted surrounded by parentheses. For example:
449449

450450
```dart
451451
print((1, 2, 3).toString()); // "(1, 2, 3)".
452-
print((a: 'str', 'ing').toString()); // "(a: str, int)".
452+
print((a: 'str', 'int').toString()); // "(a: str, int)".
453453
```
454454

455455
The order that named fields appear and how they are interleaved with positional

0 commit comments

Comments
 (0)