From 590510956eb649dee9f502433a5cac23f18b38e6 Mon Sep 17 00:00:00 2001 From: yoKurt94 <62561593+yoKurt94@users.noreply.github.com> Date: Tue, 20 May 2025 17:16:31 +0200 Subject: [PATCH] Fix missing 3rd person singular s MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 'type that work' is incorrect — 'type' is singular, but 'work' is plural. --- packages/documentation/copy/en/handbook-v2/Object Types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/documentation/copy/en/handbook-v2/Object Types.md b/packages/documentation/copy/en/handbook-v2/Object Types.md index d45163830fc8..2bffb327f4da 100644 --- a/packages/documentation/copy/en/handbook-v2/Object Types.md +++ b/packages/documentation/copy/en/handbook-v2/Object Types.md @@ -797,7 +797,7 @@ We'll circle back to type aliases in just a little bit. ### The `Array` Type -Generic object types are often some sort of container type that work independently of the type of elements they contain. +Generic object types are often some sort of container type that works independently of the type of elements they contain. It's ideal for data structures to work this way so that they're re-usable across different data types. It turns out we've been working with a type just like that throughout this handbook: the `Array` type.