Skip to content

Commit d6dbb5c

Browse files
authored
Merge pull request #29 from talves/main
fix: tuple false positive
2 parents fb3426d + 3dc3529 commit d6dbb5c

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

src/07-arrays.problem.ts

+4
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,9 @@ export const defaultUser: User = {
2121
id: 1,
2222
title: "How I eat so much cheese",
2323
},
24+
{
25+
id: 2,
26+
title: "Why I don't eat more vegetables",
27+
},
2428
],
2529
};

src/07-arrays.solution.1.ts

+4
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,9 @@ export const defaultUser: User = {
2121
id: 1,
2222
title: "How I eat so much cheese",
2323
},
24+
{
25+
id: 2,
26+
title: "Why I don't eat more vegetables",
27+
},
2428
],
2529
};

src/07-arrays.solution.2.ts

+4
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,9 @@ export const defaultUser: User = {
2121
id: 1,
2222
title: "How I eat so much cheese",
2323
},
24+
{
25+
id: 2,
26+
title: "Why I don't eat more vegetables",
27+
},
2428
],
2529
};

0 commit comments

Comments
 (0)