Skip to content

Commit 3537a49

Browse files
committed
Rename pkg
1 parent 9f06c7e commit 3537a49

File tree

13 files changed

+11
-11
lines changed

13 files changed

+11
-11
lines changed

lib/node_modules/@stdlib/complex/factory/README.md renamed to lib/node_modules/@stdlib/complex/cmplx/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
## Usage
1818

1919
```javascript
20-
var complex = require( '@stdlib/complex/factory' );
20+
var complex = require( '@stdlib/complex/cmplx' );
2121
```
2222

2323
#### complex( real, imag\[, dtype] )
@@ -60,7 +60,7 @@ var z = complex( 5.0, 3.0, 'float32' );
6060
```javascript
6161
var randu = require( '@stdlib/random/base/randu' );
6262
var round = require( '@stdlib/math/base/special/round' );
63-
var complex = require( '@stdlib/complex/factory' );
63+
var complex = require( '@stdlib/complex/cmplx' );
6464

6565
var re;
6666
var im;

lib/node_modules/@stdlib/complex/factory/benchmark/benchmark.js renamed to lib/node_modules/@stdlib/complex/cmplx/benchmark/benchmark.js

File renamed without changes.

lib/node_modules/@stdlib/complex/factory/benchmark/julia/REQUIRE renamed to lib/node_modules/@stdlib/complex/cmplx/benchmark/julia/REQUIRE

File renamed without changes.

lib/node_modules/@stdlib/complex/factory/benchmark/julia/benchmark.jl renamed to lib/node_modules/@stdlib/complex/cmplx/benchmark/julia/benchmark.jl

File renamed without changes.

lib/node_modules/@stdlib/complex/factory/benchmark/python/benchmark.py renamed to lib/node_modules/@stdlib/complex/cmplx/benchmark/python/benchmark.py

File renamed without changes.
File renamed without changes.

lib/node_modules/@stdlib/complex/factory/examples/index.js renamed to lib/node_modules/@stdlib/complex/cmplx/examples/index.js

File renamed without changes.

lib/node_modules/@stdlib/complex/factory/lib/complex.js renamed to lib/node_modules/@stdlib/complex/cmplx/lib/complex.js

File renamed without changes.
File renamed without changes.

lib/node_modules/@stdlib/complex/factory/lib/index.js renamed to lib/node_modules/@stdlib/complex/cmplx/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
/**
44
* Create a complex number.
55
*
6-
* @module @stdlib/complex/factory
6+
* @module @stdlib/complex/cmplx
77
*
88
* @example
9-
* var complex = require( '@stdlib/complex/factory' );
9+
* var complex = require( '@stdlib/complex/cmplx' );
1010
*
1111
* var z = complex( 5.0, 3.0, 'float64' );
1212
* // returns <Complex128>

0 commit comments

Comments
 (0)