@@ -46,13 +46,7 @@ happen.
4646- [ Installation] ( #installation )
4747- [ Usage] ( #usage )
4848 - [ String Helpers] ( #string-helpers )
49- - [ String Concatination] ( #string-concatination )
5049 - [ Object Helpers] ( #object-helpers )
51- - [ Immutability Set Property] ( #immutability-set-property )
52- - [ Object Filter] ( #object-filter )
53- - [ Object Map] ( #object-map )
54- - [ Pick] ( #pick )
55- - [ Pick Deep] ( #pick-deep )
5650 - [ Utility Types] ( #utility-types )
5751- [ Other Solutions] ( #other-solutions )
5852- [ Issues] ( #issues )
@@ -283,10 +277,10 @@ aligns with the underlying types.
283277We will also enforce the required ` queryObj ` to be the same expected shape as
284278the ` obj ` , if you don't see this behavior - consider it a bug.
285279
286- > While you can ` true ` or ` false ` any object key, you cannot do so if the key's
287- > value is an array or object currently.
280+ > While you can ` true ` or ` false ` any object key, you can also do so if the
281+ > key's value is an array or object currently.
288282>
289- > This means that while this works:
283+ > This means that this works:
290284>
291285> ``` typescript
292286> pickDeep (
@@ -299,7 +293,7 @@ the `obj`, if you don't see this behavior - consider it a bug.
299293> )
300294> ` ` `
301295>
302- > This does not :
296+ > And so does this :
303297>
304298> ` ` ` typescript
305299> pickDeep (
@@ -309,9 +303,6 @@ the `obj`, if you don't see this behavior - consider it a bug.
309303> },
310304> )
311305> ` ` `
312- >
313- > This is a limitation with our typings currently and should be fixed in the
314- > future.
315306
316307### Utility Types
317308
0 commit comments