Skip to content

Commit 3ffcdbc

Browse files
committed
Update description
1 parent 19b3786 commit 3ffcdbc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/utils/while/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# while
22

3-
> While a test condition is true, invoke a function.
3+
> Invoke a function while a test condition is true.
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. -->

lib/node_modules/@stdlib/utils/while/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( predicate, fcn[, thisArg] )
3-
While a test condition is true, invokes a function.
3+
Invokes a function while a test condition is true.
44

55
When invoked, both the predicate function and the function to invoke are
66
provided a single argument:

lib/node_modules/@stdlib/utils/while/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-
* While a test condition is true, invoke a function.
4+
* Invoke a function while a test condition is true.
55
*
66
* @module @stdlib/utils/while
77
*

lib/node_modules/@stdlib/utils/while/lib/while.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var isFunction = require( '@stdlib/assert/is-function' );
88
// MAIN //
99

1010
/**
11-
* While a test condition is true, invokes a function.
11+
* Invokes a function while a test condition is true.
1212
*
1313
* @param {Function} predicate - function which indicates whether to continue invoking a function
1414
* @param {Function} fcn - function to invoke

lib/node_modules/@stdlib/utils/while/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/while",
33
"version": "0.0.0",
4-
"description": "While a test condition is true, invoke a function.",
4+
"description": "Invoke a function while a test condition is true.",
55
"author": {
66
"name": "The Stdlib Authors",
77
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"

0 commit comments

Comments
 (0)