Skip to content

Commit 038b199

Browse files
committed
docs: update paths
1 parent 866b939 commit 038b199

File tree

48 files changed

+66
-66
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+66
-66
lines changed

lib/node_modules/@stdlib/array/base/accessor-setter/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
--------
4848
> var f = {{alias}}( 'complex64' );
4949
> var x = {{alias:@stdlib/array/complex64}}( [ 1, 2, 3, 4 ] );
50-
> f( x, 1, new {{alias:@stdlib/complex/float32}}( 10.0, 11.0 ) );
50+
> f( x, 1, new {{alias:@stdlib/complex/float32/ctor}}( 10.0, 11.0 ) );
5151
> var v = x.get( 1 )
5252
<Complex64>
5353
> var r = {{alias:@stdlib/complex/realf}}( v )

lib/node_modules/@stdlib/assert/is-complex-like/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
Examples
1616
--------
17-
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32}}( 2.0, 2.0 ) )
17+
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( 2.0, 2.0 ) )
1818
true
19-
> bool = {{alias}}( new {{alias:@stdlib/complex/float64}}( 3.0, 1.0 ) )
19+
> bool = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 3.0, 1.0 ) )
2020
true
2121
> bool = {{alias}}( 3.14 )
2222
false

lib/node_modules/@stdlib/assert/is-complex/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515

1616
Examples
1717
--------
18-
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32}}( 2.0, 2.0 ) )
18+
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( 2.0, 2.0 ) )
1919
true
20-
> bool = {{alias}}( new {{alias:@stdlib/complex/float64}}( 3.0, 1.0 ) )
20+
> bool = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 3.0, 1.0 ) )
2121
true
2222
> bool = {{alias}}( 3.14 )
2323
false

lib/node_modules/@stdlib/assert/is-complex128/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
Examples
1616
--------
17-
> var bool = {{alias}}( new {{alias:@stdlib/complex/float64}}( 3.0, 1.0 ) )
17+
> var bool = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 3.0, 1.0 ) )
1818
true
19-
> bool = {{alias}}( new {{alias:@stdlib/complex/float32}}( 2.0, 2.0 ) )
19+
> bool = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( 2.0, 2.0 ) )
2020
false
2121
> bool = {{alias}}( 3.14 )
2222
false

lib/node_modules/@stdlib/assert/is-complex64/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
Examples
1616
--------
17-
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32}}( 2.0, 2.0 ) )
17+
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( 2.0, 2.0 ) )
1818
true
19-
> bool = {{alias}}( new {{alias:@stdlib/complex/float64}}( 3.0, 1.0 ) )
19+
> bool = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 3.0, 1.0 ) )
2020
false
2121
> bool = {{alias}}( 3.14 )
2222
false

lib/node_modules/@stdlib/assert/is-same-complex128/docs/repl.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121

2222
Examples
2323
--------
24-
> var x = new {{alias:@stdlib/complex/float64}}( 1.0, 2.0 );
25-
> var y = new {{alias:@stdlib/complex/float64}}( 1.0, 2.0 );
24+
> var x = new {{alias:@stdlib/complex/float64/ctor}}( 1.0, 2.0 );
25+
> var y = new {{alias:@stdlib/complex/float64/ctor}}( 1.0, 2.0 );
2626
> var bool = {{alias}}( x, y )
2727
true
2828

29-
> x = new {{alias:@stdlib/complex/float64}}( NaN, NaN );
30-
> y = new {{alias:@stdlib/complex/float64}}( NaN, NaN );
29+
> x = new {{alias:@stdlib/complex/float64/ctor}}( NaN, NaN );
30+
> y = new {{alias:@stdlib/complex/float64/ctor}}( NaN, NaN );
3131
> bool = {{alias}}( x, y )
3232
true
3333

lib/node_modules/@stdlib/assert/is-same-complex64/docs/repl.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121

2222
Examples
2323
--------
24-
> var x = new {{alias:@stdlib/complex/float32}}( 1.0, 2.0 );
25-
> var y = new {{alias:@stdlib/complex/float32}}( 1.0, 2.0 );
24+
> var x = new {{alias:@stdlib/complex/float32/ctor}}( 1.0, 2.0 );
25+
> var y = new {{alias:@stdlib/complex/float32/ctor}}( 1.0, 2.0 );
2626
> var bool = {{alias}}( x, y )
2727
true
2828

29-
> x = new {{alias:@stdlib/complex/float32}}( NaN, NaN );
30-
> y = new {{alias:@stdlib/complex/float32}}( NaN, NaN );
29+
> x = new {{alias:@stdlib/complex/float32/ctor}}( NaN, NaN );
30+
> y = new {{alias:@stdlib/complex/float32/ctor}}( NaN, NaN );
3131
> bool = {{alias}}( x, y )
3232
true
3333

lib/node_modules/@stdlib/complex/base/cast-return/docs/repl.txt

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

3333
Examples
3434
--------
35-
> var f = {{alias}}( {{alias:@stdlib/math/base/ops/addf}}, 2, {{alias:@stdlib/complex/float32}} );
35+
> var f = {{alias}}( {{alias:@stdlib/math/base/ops/addf}}, 2, {{alias:@stdlib/complex/float32/ctor}} );
3636
> var z = f( 3.0, 4.0 )
3737
<Complex64>
3838
> var re = {{alias:@stdlib/complex/realf}}( z )

lib/node_modules/@stdlib/complex/base/wrap-function/docs/repl.txt

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

3535
Examples
3636
--------
37-
> var f = {{alias}}( {{alias:@stdlib/math/base/ops/caddf}}, 2, {{alias:@stdlib/complex/float32}} );
37+
> var f = {{alias}}( {{alias:@stdlib/math/base/ops/caddf}}, 2, {{alias:@stdlib/complex/float32/ctor}} );
3838
> var z = f( 3.0, 4.0 )
3939
<Complex64>
4040
> var re = {{alias:@stdlib/complex/realf}}( z )

lib/node_modules/@stdlib/complex/conj/docs/repl.txt

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

1616
Examples
1717
--------
18-
> var z = new {{alias:@stdlib/complex/float64}}( 5.0, 3.0 );
18+
> var z = new {{alias:@stdlib/complex/float64/ctor}}( 5.0, 3.0 );
1919
> z.toString()
2020
'5 + 3i'
2121
> var v = {{alias}}( z );

0 commit comments

Comments
 (0)