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];