Skip to content

Commit 6f08c1e

Browse files
committed
docs: fix description
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed ---
1 parent 1129c90 commit 6f08c1e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • lib/node_modules/@stdlib/object/bifurcate-own/docs/types

lib/node_modules/@stdlib/object/bifurcate-own/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ interface Options {
3434
}
3535

3636
/**
37-
* Returns a boolean indicating which group an object's own and inherited property values belongs to.
37+
* Returns a boolean indicating which group an object's own property values belongs to.
3838
*
3939
* @returns boolean indicating whether a property value should be placed in the first or second group
4040
*/
4141
type Nullary = () => boolean;
4242

4343
/**
44-
* Returns a boolean indicating which group an object's own and inherited property values belongs to.
44+
* Returns a boolean indicating which group an object's own property values belongs to.
4545
*
4646
* @param value - object value
4747
* @returns boolean indicating whether a property value should be placed in the first or second group
4848
*/
4949
type Unary = ( value: any ) => boolean;
5050

5151
/**
52-
* Returns a boolean indicating which group an object's own and inherited property values belongs to.
52+
* Returns a boolean indicating which group an object's own property values belongs to.
5353
*
5454
* @param value - object value
5555
* @param key - object key
@@ -58,7 +58,7 @@ type Unary = ( value: any ) => boolean;
5858
type Binary = ( value: any, key: string | symbol ) => boolean;
5959

6060
/**
61-
* Returns a boolean indicating which group an object's own and inherited property values belongs to.
61+
* Returns a boolean indicating which group an object's own property values belongs to.
6262
*
6363
* @param value - object value
6464
* @param key - object key

0 commit comments

Comments
 (0)