Skip to content

Commit 0ce5e23

Browse files
committed
Switch word order
1 parent 1a0354a commit 0ce5e23

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/utils/if-then-async/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Both `x` and `y` are provided a single argument:
7272

7373
* `clbk`: callback to invoke upon function completion
7474

75-
The callback function accepts any number of arguments, with the first argument reserved for providing an error. If the error argument is falsy, the `done` callback is invoked with its first argument as `null` and all other provided arguments. If the error argument is truthy, the `done` callback is invoked only with an error argument.
75+
The callback function accepts any number of arguments, with the first argument reserved for providing an error. If the error argument is falsy, the `done` callback is invoked with its first argument as `null` and all other provided arguments. If the error argument is truthy, the `done` callback is invoked with only an error argument.
7676

7777
``` javascript
7878
var randu = require( '@stdlib/math/base/random/randu' );

lib/node_modules/@stdlib/utils/if-then-async/docs/repl.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
If the error argument is falsy, the `done` callback is invoked with its
2323
first argument as `null` and all other provided arguments.
2424

25-
If the error argument is truthy, the `done` callback is invoked only with an
25+
If the error argument is truthy, the `done` callback is invoked with only an
2626
error argument.
2727

2828
Execution is *not* guaranteed to be asynchronous. To guarantee asynchrony,

0 commit comments

Comments
 (0)