File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3821,7 +3821,7 @@ declare module Immutable {
3821
3821
* ```js
3822
3822
* const { Map, List } = require('immutable')
3823
3823
* const deepData = Map({ x: List([ Map({ y: 123 }) ]) });
3824
- * getIn(deepData, ['x', 0, 'y']) // 123
3824
+ * deepData. getIn(['x', 0, 'y']) // 123
3825
3825
* ```
3826
3826
*
3827
3827
* Plain JavaScript Object or Arrays may be nested within an Immutable.js
@@ -3831,7 +3831,7 @@ declare module Immutable {
3831
3831
* ```js
3832
3832
* const { Map, List } = require('immutable')
3833
3833
* const deepData = Map({ x: [ { y: 123 } ] });
3834
- * getIn(deepData, ['x', 0, 'y']) // 123
3834
+ * deepData. getIn(['x', 0, 'y']) // 123
3835
3835
* ```
3836
3836
*/
3837
3837
getIn ( searchKeyPath : Iterable < any > , notSetValue ?: any ) : any ;
You can’t perform that action at this time.
0 commit comments