diff --git a/lib/node_modules/@stdlib/assert/is-sharedarraybuffer/README.md b/lib/node_modules/@stdlib/assert/is-sharedarraybuffer/README.md index d8c0af26bb91..9f81645707fe 100644 --- a/lib/node_modules/@stdlib/assert/is-sharedarraybuffer/README.md +++ b/lib/node_modules/@stdlib/assert/is-sharedarraybuffer/README.md @@ -114,7 +114,7 @@ bool = isSharedArrayBuffer( new Uint32Array( 10 ) ); bool = isSharedArrayBuffer( new Float64Array( 10 ) ); // returns false -bool = isSharedArrayBuffer( new Array( 10 ) ); +bool = isSharedArrayBuffer( [ 1, 2, 3, 4 ] ); // returns false bool = isSharedArrayBuffer( {} ); @@ -137,7 +137,7 @@ bool = isSharedArrayBuffer( null ); ## See Also - [`@stdlib/assert/is-arraybuffer`][@stdlib/assert/is-arraybuffer]: test if a value is an ArrayBuffer. -- [`@stdlib/assert/is-typed-array`][@stdlib/assert/is-typed-array]: test if a value is a typed array. +- [`@stdlib/assert/is-typed-array`][@stdlib/assert/is-typed-array]: test if a value is a built-in typed array.