Skip to content

Commit c971814

Browse files
committed
fix: update references to use the correct compare constructor path
1 parent ee746d7 commit c971814

8 files changed

Lines changed: 13 additions & 13 deletions

File tree

lib/node_modules/@stdlib/plot/vega/base/assert/is-compare/README.md

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

2121
# isCompare
2222

23-
> Test if an input value is an [compare][@stdlib/plot/vega/mark/compare] instance.
23+
> Test if an input value is an [compare][@stdlib/plot/vega/compare/ctor] instance.
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,10 +42,10 @@ var isCompare = require( '@stdlib/plot/vega/base/assert/is-compare' );
4242

4343
#### isCompare( value )
4444

45-
Tests if an input value is an [compare][@stdlib/plot/vega/mark/compare] instance.
45+
Tests if an input value is an [compare][@stdlib/plot/vega/compare/ctor] instance.
4646

4747
```javascript
48-
var Compare = require( '@stdlib/plot/vega/mark/compare' );
48+
var Compare = require( '@stdlib/plot/vega/compare/ctor' );
4949

5050
var v = new Compare({
5151
'field': 'amount'
@@ -78,7 +78,7 @@ bool = isCompare( 'foo' );
7878
<!-- eslint no-undef: "error" -->
7979

8080
```javascript
81-
var Compare = require( '@stdlib/plot/vega/mark/compare' );
81+
var Compare = require( '@stdlib/plot/vega/compare/ctor' );
8282
var isCompare = require( '@stdlib/plot/vega/base/assert/is-compare' );
8383

8484
var v = new Compare({
@@ -118,7 +118,7 @@ bool = isCompare( 'foo' );
118118

119119
<section class="links">
120120

121-
[@stdlib/plot/vega/mark/compare]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/plot/vega/mark/compare
121+
[@stdlib/plot/vega/compare/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/plot/vega/compare/ctor
122122

123123
</section>
124124

lib/node_modules/@stdlib/plot/vega/base/assert/is-compare/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
var bench = require( '@stdlib/bench' );
2424
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
25-
var Compare = require( '@stdlib/plot/vega/mark/compare' );
25+
var Compare = require( '@stdlib/plot/vega/compare/ctor' );
2626
var pkg = require( './../package.json' ).name;
2727
var isCompare = require( './../lib' );
2828

lib/node_modules/@stdlib/plot/vega/base/assert/is-compare/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
Examples
1616
--------
17-
> var Compare = {{alias:@stdlib/plot/vega/mark/compare}};
17+
> var Compare = {{alias:@stdlib/plot/vega/compare/ctor}};
1818
> var v = new Compare({ 'field': 'amount' });
1919
> var bool = {{alias}}( v )
2020
true

lib/node_modules/@stdlib/plot/vega/base/assert/is-compare/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* @returns boolean indicating whether an input value is an compare instance
2626
*
2727
* @example
28-
* var Compare = require( '@stdlib/plot/vega/mark/compare' );
28+
* var Compare = require( '@stdlib/plot/vega/compare/ctor' );
2929
*
3030
* var v = new Compare({
3131
* 'field': 'amount'

lib/node_modules/@stdlib/plot/vega/base/assert/is-compare/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
'use strict';
2020

21-
var Compare = require( '@stdlib/plot/vega/mark/compare' );
21+
var Compare = require( '@stdlib/plot/vega/compare/ctor' );
2222
var isCompare = require( './../lib' );
2323

2424
var v = new Compare({

lib/node_modules/@stdlib/plot/vega/base/assert/is-compare/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @module @stdlib/plot/vega/base/assert/is-compare
2525
*
2626
* @example
27-
* var Compare = require( '@stdlib/plot/vega/mark/compare' );
27+
* var Compare = require( '@stdlib/plot/vega/compare/ctor' );
2828
* var isCompare = require( '@stdlib/plot/vega/base/assert/is-compare' );
2929
*
3030
* var v = new Compare({

lib/node_modules/@stdlib/plot/vega/base/assert/is-compare/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var isObject = require( '@stdlib/assert/is-object' );
2424
var isString = require( '@stdlib/assert/is-string' ).isPrimitive;
2525
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
26-
var Compare = require( '@stdlib/plot/vega/mark/compare' );
26+
var Compare = require( '@stdlib/plot/vega/compare/ctor' );
2727

2828

2929
// MAIN //
@@ -35,7 +35,7 @@ var Compare = require( '@stdlib/plot/vega/mark/compare' );
3535
* @returns {boolean} boolean indicating whether an input value is an compare instance
3636
*
3737
* @example
38-
* var Compare = require( '@stdlib/plot/vega/mark/compare' );
38+
* var Compare = require( '@stdlib/plot/vega/compare/ctor' );
3939
*
4040
* var v = new Compare({
4141
* 'field': 'amount'

lib/node_modules/@stdlib/plot/vega/base/assert/is-compare/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var tape = require( 'tape' );
24-
var Compare = require( '@stdlib/plot/vega/mark/compare' );
24+
var Compare = require( '@stdlib/plot/vega/compare/ctor' );
2525
var isCompare = require( './../lib' );
2626

2727

0 commit comments

Comments
 (0)