Skip to content

Commit 69887a0

Browse files
authored
docs: link to string/format
Signed-off-by: Athan <[email protected]>
1 parent 325ec43 commit 69887a0

File tree

1 file changed

+4
-2
lines changed
  • lib/node_modules/@stdlib/console/log-each-map

1 file changed

+4
-2
lines changed

lib/node_modules/@stdlib/console/log-each-map/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# logEachMap
2222

23-
> Insert array element values and the result of a callback function into a format string and print the result.
23+
> Insert array element values and the result of a callback function into a [format string][@stdlib/string/format] and print the result.
2424
2525
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
2626

@@ -42,7 +42,7 @@ var logEachMap = require( '@stdlib/console/log-each-map' );
4242

4343
#### logEachMap( str\[, ...args], clbk\[, thisArg] )
4444

45-
Inserts array element values and the result of a callback function into a format string and prints the result.
45+
Inserts array element values and the result of a callback function into a [format string][@stdlib/string/format] and prints the result.
4646

4747
```javascript
4848
function add( a, b ) {
@@ -182,6 +182,8 @@ logEachMap( '%d + %d = %d', x, y, add );
182182

183183
[@stdlib/array/complex64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/complex64
184184

185+
[@stdlib/string/format]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/format
186+
185187
</section>
186188

187189
<!-- /.links -->

0 commit comments

Comments
 (0)