Skip to content

Commit cac22b4

Browse files
authored
Fixes #1688. record_A02_t09.dart. Fix typo (#1714)
1 parent 97340a8 commit cac22b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LanguageFeatures/Patterns/record_A02_t09.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ main() {
5959
Expect.equals(Unit(1), a7);
6060
var (n: Square(size: Unit a8)) = (n: Square(2));
6161
Expect.equals(Unit(2), a8);
62-
var (n: Square(size: unit a9), Circle(size: Unit b9)) =
62+
var (n: Square(size: Unit a9), Circle(size: Unit b9)) =
6363
(n: Square(1), Circle(1));
6464
Expect.equals(Unit(1), a9);
6565
Expect.equals(Unit(1), b9);

0 commit comments

Comments
 (0)