From eee878c282f17cdbe8b3d58808e58478047a4728 Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 2 Oct 2018 21:23:42 -0400 Subject: [PATCH] updated pick description to... From T, pick a set of properties whose keys are in the union K --- lib/lib.es5.d.ts | 2 +- src/lib/es5.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/lib.es5.d.ts b/lib/lib.es5.d.ts index 840fd68278906..1190975500fd1 100644 --- a/lib/lib.es5.d.ts +++ b/lib/lib.es5.d.ts @@ -1370,7 +1370,7 @@ type Readonly = { }; /** - * From T pick a set of properties K + * From T, pick a set of properties whose keys are in the union K */ type Pick = { [P in K]: T[P]; diff --git a/src/lib/es5.d.ts b/src/lib/es5.d.ts index 2917539cfdb6e..c8e99f0d1dbaf 100644 --- a/src/lib/es5.d.ts +++ b/src/lib/es5.d.ts @@ -1410,7 +1410,7 @@ type Readonly = { }; /** - * From T pick a set of properties K + * From T, pick a set of properties whose keys are in the union K */ type Pick = { [P in K]: T[P];