From c5274d43bd022ce28db5b965cd9143099e9533fd Mon Sep 17 00:00:00 2001 From: Lokesh Ranjan Date: Sun, 28 Dec 2025 13:23:33 +0530 Subject: [PATCH] Enhance REPL example with boolean check Added a boolean check to the REPL example for clarity. Signed-off-by: Lokesh Ranjan --- lib/node_modules/@stdlib/ndarray/some-by/docs/repl.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/node_modules/@stdlib/ndarray/some-by/docs/repl.txt b/lib/node_modules/@stdlib/ndarray/some-by/docs/repl.txt index 1e623b809115..179a73fdcfa5 100644 --- a/lib/node_modules/@stdlib/ndarray/some-by/docs/repl.txt +++ b/lib/node_modules/@stdlib/ndarray/some-by/docs/repl.txt @@ -92,6 +92,8 @@ > var y = {{alias:@stdlib/ndarray/from-scalar}}( false ); > var out = {{alias}}.assign( x, 3, y, f ) [ true ] + > var bool = ( out === y ) + true See Also --------