Skip to content

Commit b7d18a0

Browse files
committed
Update description
1 parent 3ffcdbc commit b7d18a0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# doWhile
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/do-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
The condition is evaluated *after* executing the provided function; thus,
66
`fcn` *always* executes at least once.

lib/node_modules/@stdlib/utils/do-while/lib/do_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/do-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/do-while
77
*

lib/node_modules/@stdlib/utils/do-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/do-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)