From 8c4008a8beb27e969fa13b18582225b9d6f26e62 Mon Sep 17 00:00:00 2001 From: Adrian Baran Date: Fri, 4 Jul 2025 12:34:15 +0200 Subject: [PATCH] Fix type-operations/array-type-shenanigans/01-flat-filter example --- .../array-type-shenanigans/01-flat-filter/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/type-operations/array-type-shenanigans/01-flat-filter/README.md b/projects/type-operations/array-type-shenanigans/01-flat-filter/README.md index 68f72c3b..73552176 100644 --- a/projects/type-operations/array-type-shenanigans/01-flat-filter/README.md +++ b/projects/type-operations/array-type-shenanigans/01-flat-filter/README.md @@ -32,7 +32,7 @@ It should result in a flattened array or tuple type of items that only `extend F ## Examples -- `FilteredArrayItems` -> `number` +- `FilteredArrayItems` -> `never` - `FilteredArrayItems<(number | string)[], number>` -> `number` - `FilteredArrayItems<["a", 1, "b", 2], string>` -> `"a" | "b"`