Skip to content

Commit ba90e4c

Browse files
authored
Merge branch 'stdlib-js:develop' into fix-modulecounts-link
2 parents eb1ea31 + 7f83de8 commit ba90e4c

10 files changed

Lines changed: 41 additions & 57 deletions

File tree

etc/pydocstyle/README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
<!--
2+
3+
@license Apache-2.0
4+
5+
Copyright (c) 2017 The Stdlib Authors.
6+
7+
Licensed under the Apache License, Version 2.0 (the "License");
8+
you may not use this file except in compliance with the License.
9+
You may obtain a copy of the License at
10+
11+
http://www.apache.org/licenses/LICENSE-2.0
12+
13+
Unless required by applicable law or agreed to in writing, software
14+
distributed under the License is distributed on an "AS IS" BASIS,
15+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
See the License for the specific language governing permissions and
17+
limitations under the License.
18+
19+
-->
20+
121
# pydocstyle
222

323
> [pydocstyle][pydocstyle] configuration.
@@ -24,7 +44,7 @@ This directory contains [pydocstyle][pydocstyle] configuration files.
2444

2545
<section class="links">
2646

27-
[pydocstyle]: http://pydocstyle.com/
47+
[pydocstyle]: https://github.com/PyCQA/pydocstyle
2848

2949
</section>
3050

lib/node_modules/@stdlib/_tools/eslint/rules/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,13 @@ var eslint = rules;
6666
- <span class="signature">[`new-cap-array`][@stdlib/_tools/eslint/rules/new-cap-array]</span><span class="delimiter">: </span><span class="description">ESLint rule enforcing that the `Array` constructor is invoked with the `new` keyword.</span>
6767
- <span class="signature">[`new-cap-error`][@stdlib/_tools/eslint/rules/new-cap-error]</span><span class="delimiter">: </span><span class="description">ESLint rule enforcing that error constructors are invoked with the `new` keyword.</span>
6868
- <span class="signature">[`new-cap-regexp`][@stdlib/_tools/eslint/rules/new-cap-regexp]</span><span class="delimiter">: </span><span class="description">ESLint rule enforcing that the `RegExp` constructor is invoked with the `new` keyword.</span>
69+
- <span class="signature">[`no-bench-string-concat`][@stdlib/_tools/eslint/rules/no-bench-string-concat]</span><span class="delimiter">: </span><span class="description">ESLint rule enforcing that `@stdlib/string/format` is used instead of string concatenation in benchmark descriptions.</span>
6970
- <span class="signature">[`no-builtin-big-int`][@stdlib/_tools/eslint/rules/no-builtin-big-int]</span><span class="delimiter">: </span><span class="description">ESLint rule disallowing the use of the built-in global `BigInt` literal syntax and constructor.</span>
7071
- <span class="signature">[`no-builtin-math`][@stdlib/_tools/eslint/rules/no-builtin-math]</span><span class="delimiter">: </span><span class="description">ESLint rule enforcing that `stdlib` equivalents are used instead of the built-in global `Math` object.</span>
7172
- <span class="signature">[`no-dynamic-exports`][@stdlib/_tools/eslint/rules/no-dynamic-exports]</span><span class="delimiter">: </span><span class="description">ESLint rule enforcing that only statically analyzable values are exported.</span>
7273
- <span class="signature">[`no-dynamic-require`][@stdlib/_tools/eslint/rules/no-dynamic-require]</span><span class="delimiter">: </span><span class="description">ESLint rule enforcing that `require()` calls have only string literals as arguments.</span>
7374
- <span class="signature">[`no-empty-comments`][@stdlib/_tools/eslint/rules/no-empty-comments]</span><span class="delimiter">: </span><span class="description">ESLint rule to disallow empty comments.</span>
75+
- <span class="signature">[`no-error-string-concat`][@stdlib/_tools/eslint/rules/no-error-string-concat]</span><span class="delimiter">: </span><span class="description">ESLint rule disallowing string concatenation in error messages.</span>
7476
- <span class="signature">[`no-immediate-require`][@stdlib/_tools/eslint/rules/no-immediate-require]</span><span class="delimiter">: </span><span class="description">ESLint rule enforcing that `require()` expressions are not immediately invoked.</span>
7577
- <span class="signature">[`no-internal-require`][@stdlib/_tools/eslint/rules/no-internal-require]</span><span class="delimiter">: </span><span class="description">ESLint rule disallowing `require()` calls into internals of another stdlib package.</span>
7678
- <span class="signature">[`no-multiple-empty-lines`][@stdlib/_tools/eslint/rules/no-multiple-empty-lines]</span><span class="delimiter">: </span><span class="description">ESLint rule to enforce that that code does not contain multiple blank lines.</span>
@@ -403,6 +405,8 @@ console.log( getKeys( rules ) );
403405

404406
[@stdlib/_tools/eslint/rules/new-cap-regexp]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/new-cap-regexp
405407

408+
[@stdlib/_tools/eslint/rules/no-bench-string-concat]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/no-bench-string-concat
409+
406410
[@stdlib/_tools/eslint/rules/no-builtin-big-int]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/no-builtin-big-int
407411

408412
[@stdlib/_tools/eslint/rules/no-builtin-math]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/no-builtin-math
@@ -413,6 +417,8 @@ console.log( getKeys( rules ) );
413417

414418
[@stdlib/_tools/eslint/rules/no-empty-comments]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/no-empty-comments
415419

420+
[@stdlib/_tools/eslint/rules/no-error-string-concat]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/no-error-string-concat
421+
416422
[@stdlib/_tools/eslint/rules/no-immediate-require]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/no-immediate-require
417423

418424
[@stdlib/_tools/eslint/rules/no-internal-require]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/_tools/eslint/rules/no-internal-require

lib/node_modules/@stdlib/lapack/base/docs/types/index.d.ts

Lines changed: 4 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,6 @@ interface Namespace {
209209
* @example
210210
* var Complex64Array = require( '@stdlib/array/complex64' );
211211
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
212-
* var realf = require( '@stdlib/complex/float32/real' );
213-
* var imagf = require( '@stdlib/complex/float32/imag' );
214212
*
215213
* var cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
216214
* var cy = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
@@ -219,28 +217,14 @@ interface Namespace {
219217
* ns.crot( 2, cx, 2, cy, 1, 0.8, s );
220218
*
221219
* var z = cy.get( 0 );
222-
* // returns <Complex64>
223-
*
224-
* var re = realf( z );
225-
* // returns ~-1.1
226-
*
227-
* var im = imagf( z );
228-
* // returns ~-0.2
220+
* // returns <Complex64>[ ~-1.1, ~-0.2 ]
229221
*
230222
* z = cx.get( 0 );
231-
* // returns <Complex64>
232-
*
233-
* re = realf( z );
234-
* // returns ~0.8
235-
*
236-
* im = imagf( z );
237-
* // returns ~1.6
223+
* // returns <Complex64>[ ~0.8, ~1.6 ]
238224
*
239225
* @example
240226
* var Complex64Array = require( '@stdlib/array/complex64' );
241227
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
242-
* var realf = require( '@stdlib/complex/float32/real' );
243-
* var imagf = require( '@stdlib/complex/float32/imag' );
244228
*
245229
* var cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
246230
* var cy = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
@@ -249,22 +233,10 @@ interface Namespace {
249233
* ns.crot.ndarray( 2, cx, 2, 0, cy, 1, 0, 0.8, s );
250234
*
251235
* var z = cy.get( 0 );
252-
* // returns <Complex64>
253-
*
254-
* var re = realf( z );
255-
* // returns ~-1.1
256-
*
257-
* var im = imagf( z );
258-
* // returns ~-0.2
236+
* // returns <Complex64>[ ~-1.1, ~-0.2 ]
259237
*
260238
* z = cx.get( 0 );
261-
* // returns <Complex64>
262-
*
263-
* re = realf( z );
264-
* // returns ~0.8
265-
*
266-
* im = imagf( z );
267-
* // returns ~1.6
239+
* // returns <Complex64>[ ~0.8, ~1.6 ]
268240
*/
269241
crot: typeof crot;
270242

lib/node_modules/@stdlib/math/base/special/docs/types/index.d.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3835,17 +3835,9 @@ interface Namespace {
38353835
*
38363836
* @example
38373837
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
3838-
* var real = require( '@stdlib/complex/float32/real' );
3839-
* var imag = require( '@stdlib/complex/float32/imag' );
38403838
*
38413839
* var v = ns.csignumf( new Complex64( -4.2, 5.5 ) );
3842-
* // returns <Complex64>
3843-
*
3844-
* var re = real( v );
3845-
* // returns ~-0.607
3846-
*
3847-
* var im = imag( v );
3848-
* // returns ~0.795
3840+
* // returns <Complex64>[ ~-0.607, ~0.795 ]
38493841
*/
38503842
csignumf: typeof csignumf;
38513843

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
["Aadish Jain","Aarya Balwadkar","Aayush Khanna","Abdelrahman Samir","Abdul Kaium","Abhay Punia","Abhijit Raut","Abhishek G","Abhishek Jain","Adarsh Palaskar","Aditya Sapra","Aditya Singh","Ahmed Atwa","Ahmed Kashkoush","Ahmed Khaled","Aksshay Balasubramanian","Aleksandr","Ali Salesi","Aly Abdelmoneim","Aman Bhadkariya","Aman Bhansali","Amisha Chhajed","Amit Jimiwal","Anmol Sah","Annamalai Prabu","Anshu Kumar","Anshuman Singh","Anudeep Sanapala","Arihant Pal","Aryan Bhirud","Aryan J","Athan Reines","Atharva Patil","Bhavishy Agrawal","Bhupesh Kumar","Brendan Graetz","Bruno Fenzl","Bryan Elee","Chinmay Joshi","Christopher Dambamuromo","Dan Rose","Daniel Hernandez Gomez","Daniel Killenberger","Daniel Yu","Debashis Maharana","Deep Trivedi","Deepak Singh","Deepak Singh","Desh Deepak Kant","Dev Goel","Devshree Bhati","Dhanyabad Behera","Dhruv Arvind Singh","Dhruvil Mehta","Dipjyoti Das","Ditsu S","Divyansh Seth","Dominic Lim","Dominik Moritz","Dorrin Sotoudeh","Dudhat Hemil Pravinkumar","Ekampreet Singh Bains","Eunice Sim","Fadio","Frank Kovacs","Gaurav Jadhav","Gaurav Kaushik","Gautam Kaushik","Gautam sharma","Geo Daoyu","Girish Garg","Gitty Harsha","Golden Kumar","Gopi Kishan","Gunj Joshi","Guru Prasad Sharma","Gururaj Gurram","Harishchandra Reddy","Haroon Rasheed","Harsh Yadav","Harshita Kalani","Hemang Choudhary","Hemant M Mehta","Hridyanshu","Iryna Andrushko","Jaimin Godhani","Jaison Dsouza","Jalaj Kumar","James Gelok","Jay Soni","Jaysukh Makvana","Jenish","Jenish Thapa","Jithin KS","Joel Mathew Koshy","Joey Reed","Jordan Gallivan","Joris Labie","jsai28","Justin Dennison","Justyn Shelby","Karan Anand","Karan Vasudevamurthy","Karan Yadav","Karthik Prakash","Kavyansh-Bagdi","Kohantika Nath","Krishnam Agarwal","Krishnendu Das","Kshitij-Dale","Lalit Narayan Yadav","lohithganni","Lokesh Ranjan","Lovelin Dhoni J B","Mahfuza Humayra Mohona","MANI","Manik Sharma","Manvith M","Marcus Fantham","Matt Cochrane","Mihir Pandit","Milan Raj","Mohammad Bin Aftab","Mohammad Kaif","Mohsin","Momtchil Momtchev","Muhammad Haris","Muhammad Taaha Tariq","Muhmmad Saad","Nakul Krishnakumar","Naresh Jagadeesan","Naveen Kumar","Navyansh Kesarwani","navyansh007","NEEKUorAAYUSH","Neeraj Pathak","NirvedMishra","Nishant Shinde","Nishant singh","Nishchay Rajput","Nithin Katta","Nourhan Hasan","Ognjen Jevremović","olenkabilonizhka","Oneday12323","Ori Miles","Payal Goswami","Philipp Burckhardt","Pierre Forstmann","Piyush Goel","Pradyumn Prasad","Prajjwal Bajpai","Prajwal Kulkarni","Pranav Goswami","pranav-1720","Pranjal Jha","Prashant Kumar Yadav","PrathamBhamare","Pratik Singh","Pratyush Kumar Chouhan","Pravesh Kunwar","Priyansh Prajapati","Priyanshu Agarwal","Pulkit Gupta","Pushpendra Chandravanshi","Rahul Kumar","rahulrangers","rainn","Raunak Kumar Gupta","rei2hu","Rejoan Sardar","Ricky Reusser","Ridam Garg","Rishav","Rishav Tarway","Robert Gislason","Roman Stetsyk","RudrakshRaina07","Rupa","Rutam Kathale","Ruthwik Chikoti","Ryan Seal","Rylan Yang","Sachin Raj","Sahil Goyal","SAHIL KUMAR","Sai Avinash","Sai Srikar Dumpeti","Sanchay Ketan Sinha","Sarthak Paandey","Satyajeet Chavan","SAUJANYA MAGARDE","Saurabh Singh","Seth-Banker","Seyyed Parsa Neshaei","Shabareesh Shetty","Shashank Shekhar Singh","Shaswata Panda","Shivam Ahir","SHIVAM YADAV","Shivansh","Shraddheya Shendre","Shubh Mehta","Shubham","Shubham Mishra","Siddhesh waje","Sivam Das","Snehil Shah","Soumajit Chatterjee","Spandan Barve","Srinivas Batthula","Stephannie Jiménez Gacha","Suhaib Ilahi","Suraj Kumar","Swapnil Hajare","Tanishq Ahuja","Tirtadwipa Manunggal","Tudor Pagu","Tufailahmed Bargir","Tushar Bhardwaj","Tushar Bharti","Tyson Cung","Uday Kakade","Ujjwal Kirti","Utkarsh","Utkarsh Raj","UtkershBasnet","Vaibhav Patel","Vansh Choudhary","Vara Rahul Rajana","Varad Gupta","Vinit Pandit","Vivek Maurya","Wendy Yuchen Sun","Xiaochuan Ye","Yaswanth Kosuru","Yernar Yergaziyev","youzi-forge","Yugal Kaushik","Yuvi Mittal","Zuhair Ahmad"]
1+
["Aadish Jain","Aarya Balwadkar","Aayush Khanna","Abdelrahman Samir","Abdul Kaium","Abhay Punia","Abhijit Raut","Abhishek G","Abhishek Jain","Adarsh Palaskar","Aditya Sapra","Aditya Singh","Ahmed Atwa","Ahmed Kashkoush","Ahmed Khaled","Aksshay Balasubramanian","Aleksandr","Ali Salesi","Aly Abdelmoneim","Aman Bhadkariya","Aman Bhansali","Amisha Chhajed","Amit Jimiwal","Anmol Sah","Annamalai Prabu","Anshu Kumar","Anshuman Singh","Anudeep Sanapala","Arihant Pal","Aryan Bhirud","Aryan J","Athan Reines","Atharva Patil","Bhavishy Agrawal","Bhupesh Kumar","Brendan Graetz","Bruno Fenzl","Bryan Elee","Chinmay Joshi","Christopher Dambamuromo","Dan Rose","Daniel Hernandez Gomez","Daniel Killenberger","Daniel Yu","Debashis Maharana","Deep Trivedi","Deepak Singh","Deepak Singh","Desh Deepak Kant","Dev Goel","Devshree Bhati","Dhanyabad Behera","Dhruv Arvind Singh","Dhruvil Mehta","Dipjyoti Das","Ditsu S","Divyansh Seth","Dominic Lim","Dominik Moritz","Dorrin Sotoudeh","Dudhat Hemil Pravinkumar","Ekampreet Singh Bains","Eunice Sim","Fadio","Frank Kovacs","Gaurav Jadhav","Gaurav Kaushik","Gautam Kaushik","Gautam sharma","Geo Daoyu","Girish Garg","Gitty Harsha","Golden Kumar","Gopi Kishan","Gunj Joshi","Guru Prasad Sharma","Gururaj Gurram","Harishchandra Reddy","Haroon Rasheed","Harsh Yadav","Harshita Kalani","Hemang Choudhary","Hemant M Mehta","Hridyanshu","Iryna Andrushko","Jaimin Godhani","Jaison Dsouza","Jalaj Kumar","James Gelok","Jay Soni","Jaysukh Makvana","Jenish","Jenish Thapa","Jithin KS","Joel Mathew Koshy","Joey Reed","Jordan Gallivan","Joris Labie","jsai28","Justin Dennison","Justyn Shelby","Karan Anand","Karan Vasudevamurthy","Karan Yadav","Karthik Prakash","Kavyansh-Bagdi","Kohantika Nath","Krishnam Agarwal","Krishnendu Das","Kshitij-Dale","Lalit Narayan Yadav","lohithganni","Lokesh Ranjan","Lovelin Dhoni J B","Mahfuza Humayra Mohona","MANI","Manik Sharma","Manvith M","Mara Averick","Marcus Fantham","Matt Cochrane","Mihir Pandit","Milan Raj","Mohammad Bin Aftab","Mohammad Kaif","Mohsin","Momtchil Momtchev","Muhammad Haris","Muhammad Taaha Tariq","Muhmmad Saad","Nakul Krishnakumar","Naresh Jagadeesan","Naveen Kumar","Navyansh Kesarwani","navyansh007","NEEKUorAAYUSH","Neeraj Pathak","NirvedMishra","Nishant Shinde","Nishant singh","Nishchay Rajput","Nithin Katta","Nourhan Hasan","Ognjen Jevremović","olenkabilonizhka","Oneday12323","Ori Miles","Payal Goswami","Philipp Burckhardt","Pierre Forstmann","Piyush Goel","Pradyumn Prasad","Prajjwal Bajpai","Prajwal Kulkarni","Pranav Goswami","pranav-1720","Pranjal Jha","Prashant Kumar Yadav","PrathamBhamare","Pratik Singh","Pratyush Kumar Chouhan","Pravesh Kunwar","Priyansh Prajapati","Priyanshu Agarwal","Pulkit Gupta","Pushpendra Chandravanshi","Rahul Kumar","rahulrangers","rainn","Raunak Kumar Gupta","rei2hu","Rejoan Sardar","Ricky Reusser","Ridam Garg","Rishav","Rishav Tarway","Robert Gislason","Roman Stetsyk","RudrakshRaina07","Rupa","Rutam Kathale","Ruthwik Chikoti","Ryan Seal","Rylan Yang","Sachin Raj","Sahil Goyal","SAHIL KUMAR","Sai Avinash","Sai Srikar Dumpeti","Sanchay Ketan Sinha","Sarthak Paandey","Satyajeet Chavan","SAUJANYA MAGARDE","Saurabh Singh","Seth-Banker","Seyyed Parsa Neshaei","Shabareesh Shetty","Shashank Shekhar Singh","Shaswata Panda","Shivam Ahir","SHIVAM YADAV","Shivansh","Shraddheya Shendre","Shubh Mehta","Shubham","Shubham Mishra","Siddhesh waje","Sivam Das","Snehil Shah","Soumajit Chatterjee","Spandan Barve","Srinivas Batthula","Stephannie Jiménez Gacha","Suhaib Ilahi","Suraj Kumar","Swapnil Hajare","Tanishq Ahuja","Tirtadwipa Manunggal","Tudor Pagu","Tufailahmed Bargir","Tushar Bhardwaj","Tushar Bharti","Tyson Cung","Uday Kakade","Ujjwal Kirti","Utkarsh","Utkarsh Raj","UtkershBasnet","Vaibhav Patel","Vansh Choudhary","Vara Rahul Rajana","Varad Gupta","Vinit Pandit","Vivek Maurya","Wendy Yuchen Sun","Xiaochuan Ye","Yaswanth Kosuru","Yernar Yergaziyev","youzi-forge","Yugal Kaushik","Yuvi Mittal","Zuhair Ahmad"]

lib/node_modules/@stdlib/repl/help/data/data.csv

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/help/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/info/data/data.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2975,7 +2975,7 @@ FLOAT32_SQRT_PHI,"\nFLOAT32_SQRT_PHI\n Square root of the golden ratio as a s
29752975
FLOAT32_SQRT_PI,"\nFLOAT32_SQRT_PI\n Square root of the mathematical constant `π` as a single-precision\n floating-point number.\n"
29762976
FLOAT32_SQRT_THREE,"\nFLOAT32_SQRT_THREE\n Square root of `3` as a single-precision floating-point number.\n"
29772977
FLOAT32_SQRT_TWO,"\nFLOAT32_SQRT_TWO\n Square root of `2` as a single-precision floating-point number.\n"
2978-
FLOAT32_SQRT_TWO_PI,"\nFLOAT32_SQRT_TWO_PI\n Square root of the `π` times `2` as single-precision floating-point number.\n"
2978+
FLOAT32_SQRT_TWO_PI,"\nFLOAT32_SQRT_TWO_PI\n Square root of the mathematical constant `π` times `2` as a single-precision\n floating-point number.\n"
29792979
FLOAT32_TWO_PI,"\nFLOAT32_TWO_PI\n The mathematical constant `π` times `2`.\n"
29802980
Float32Array,"\nFloat32Array()\n A typed array constructor which returns a typed array representing an array\n of single-precision floating-point numbers in the platform byte order.\n\nFloat32Array( length:integer )\n Returns a typed array having a specified length.\n\nFloat32Array( typedarray:TypedArray )\n Creates a typed array from another typed array.\n\nFloat32Array( obj:Object )\n Creates a typed array from an array-like object or iterable.\n\nFloat32Array( buffer:ArrayBuffer[, byteOffset:integer[, length:integer]] )\n Returns a typed array view of an ArrayBuffer.\n"
29812981
Float32Array.from,"\nFloat32Array.from( src:ArrayLike|Iterable[, map:Function[, thisArg:Any]] )\n Creates a new typed array from an array-like object or an iterable.\n"

lib/node_modules/@stdlib/repl/info/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/stats/docs/types/index.d.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -426,10 +426,7 @@ interface Namespace {
426426
* var x = array( [ -1.0, 2.0, -3.0 ] );
427427
*
428428
* var y = ns.maxabs( x );
429-
* // returns <ndarray>
430-
*
431-
* var v = y.get();
432-
* // returns 3.0
429+
* // returns <ndarray>[ 3.0 ]
433430
*
434431
* @example
435432
* var array = require( '@stdlib/ndarray/array' );
@@ -439,10 +436,7 @@ interface Namespace {
439436
* var y = zeros( [] );
440437
*
441438
* var out = ns.maxabs.assign( x, y );
442-
* // returns <ndarray>
443-
*
444-
* var v = out.get();
445-
* // returns 3.0
439+
* // returns <ndarray>[ 3.0 ]
446440
*
447441
* var bool = ( out === y );
448442
* // returns true

0 commit comments

Comments
 (0)