diff --git a/pages/Utility Types.md b/pages/Utility Types.md index 25f0b3e08..6bedbb951 100644 --- a/pages/Utility Types.md +++ b/pages/Utility Types.md @@ -137,7 +137,7 @@ const todo: TodoPreview = { # `Exclude` -Constructs a type by excluding from `T` all properties that are assignable to `U`. +Constructs a type by excluding from `T` all types that are assignable to `U`. ##### Example @@ -149,7 +149,7 @@ type T2 = Exclude void), Function>; // string | number # `Extract` -Constructs a type by extracting from `T` all properties that are assignable to `U`. +Constructs a type by extracting from `T` all types that are assignable to `U`. ##### Example