diff --git a/lib/node_modules/@stdlib/utils/push/lib/push_typed_array.js b/lib/node_modules/@stdlib/utils/push/lib/push_typed_array.js index 3a94c9647c11..1cba859a4c1e 100644 --- a/lib/node_modules/@stdlib/utils/push/lib/push_typed_array.js +++ b/lib/node_modules/@stdlib/utils/push/lib/push_typed_array.js @@ -45,7 +45,7 @@ var ceil2 = require( '@stdlib/math/base/special/ceil2' ); // TODO: nextpow2 * var arr = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] ); * // returns [ 1.0, 2.0, 3.0, 4.0, 5.0 ] * -* arr = push( arr, 6.0, 7.0 ); +* arr = push( arr, [ 6.0, 7.0 ] ); * // returns [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0 ] */ function push( arr, items ) {