Skip to content

Commit ea7588c

Browse files
committed
Update description
1 parent 054f889 commit ea7588c

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

lib/node_modules/@stdlib/utils/group-in/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# groupIn
22

3-
> Group values according to an indicator function.
3+
> Group an object's __own__ and __inherited property values according to an indicator function.
44
55

66
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
@@ -23,7 +23,7 @@ var groupIn = require( '@stdlib/utils/group-in' );
2323

2424
#### groupIn( obj, \[options,\] indicator )
2525

26-
Groups values according to an `indicator` function, which specifies which group a value in the input `object` belongs to.
26+
Groups an object's __own__ and __inherited__ property values according to an `indicator` function, which specifies which group a value in the input `object` belongs to.
2727

2828
``` javascript
2929
function indicator( v ) {

lib/node_modules/@stdlib/utils/group-in/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

33
/**
4-
* Group values according to an indicator function.
4+
* Group an object's own and inherited property values according to an indicator function.
55
*
66
* @module @stdlib/utils/group-in
77
*

lib/node_modules/@stdlib/utils/group-in/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var returnPairs = require( './return_pairs.js' );
1313
// MAIN //
1414

1515
/**
16-
* Groups values according to an indicator function.
16+
* Groups an object's own and inherited property values according to an indicator function.
1717
*
1818
* @param {(Object|Array|TypedArray)} obj - input object
1919
* @param {Options} [options] - function options

lib/node_modules/@stdlib/utils/group-in/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/utils/group-in",
33
"version": "0.0.0",
4-
"description": "Groups values according to an indicator function.",
4+
"description": "Group an object's own and inherited property values according to an indicator function.",
55
"author": {
66
"name": "The Stdlib Authors",
77
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"

0 commit comments

Comments
 (0)