From c86b9ca66031255eb4aa0fdb2e2513f1f2c8eb0a Mon Sep 17 00:00:00 2001 From: Basarat Ali Syed Date: Wed, 3 Oct 2018 10:57:43 +1000 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Better=20description=20of=20Pick?= =?UTF-8?q?=20mapped=20type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit closes https://github.com/Microsoft/TypeScript/issues/25976 --- src/lib/es5.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/es5.d.ts b/src/lib/es5.d.ts index 2917539cfd..c8e99f0d1d 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];