Skip to content
2 changes: 2 additions & 0 deletions etc/eslint/rules/spellcheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ rules[ '@cspell/spellchecker' ] = [ 'warn', {
'dilogarithm',
'dtype',
'dtypes',
'makie',
'mathrm',
'exponentiated',
'evalpoly',
'evalrational',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
* @module @stdlib/_tools/makie/plugins/makie-list-pkgs
*
* @example
* var plugin = require( '@stdlib/_tools/makie/plugins/makie-list-pkgs' );
* var makie = require( '@stdlib/_tools/makie' );
* var plugin = require( '@stdlib/_tools/makie/plugins/makie-list-pkgs' );
* var opts = {
* 'plugins': {
* 'benchmark': plugin
Expand All @@ -36,6 +36,7 @@
* makie( '/home/stdlib-js/stdlib', opts, 'benchmark' );
*/


// MODULES //

var main = require( './main.js' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ var anyIsEntry = require( '@stdlib/array/base/assert/any-is-entry' );

#### anyIsEntry( arr, property, value )


Tests whether at least one element in a provided array has a specified own property key-value pair.

```javascript
Expand Down