From f586d136367d9194dfd3fdf5eef89c12d3951e35 Mon Sep 17 00:00:00 2001 From: Dominic Stocker <128384796+StockerGaming@users.noreply.github.com> Date: Sat, 3 Aug 2024 14:49:09 +0200 Subject: [PATCH] Adjusted description of the Partial type Subsets of a given type cannot have less properties than the original type, so the original description was inconsistent with established type operations --- packages/documentation/copy/en/reference/Utility Types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/documentation/copy/en/reference/Utility Types.md b/packages/documentation/copy/en/reference/Utility Types.md index cdd36db38c70..bddd7f9fa38a 100644 --- a/packages/documentation/copy/en/reference/Utility Types.md +++ b/packages/documentation/copy/en/reference/Utility Types.md @@ -43,7 +43,7 @@ Released: -Constructs a type with all properties of `Type` set to optional. This utility will return a type that represents all subsets of a given type. +Constructs a type with all properties of `Type` set to optional. This utility will return a type that can have all subsets of the properties of a given type. ##### Example