Skip to content

Commit 4abe551

Browse files
authored
Update lib/node_modules/@stdlib/array/base/count-if/README.md
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent d8f6acb commit 4abe551

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/array/base/count-if

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/array/base/count-if/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Counts the number of elements in an array that satisfy the provided testing func
4848
var x = [ 0, 1, 0, 1, 2 ];
4949

5050
function predicate( val ) {
51-
return ( val % 2 === 0 )
51+
return ( val % 2 === 0 );
5252
}
5353

5454
var out = countIf( x, predicate );

0 commit comments

Comments
 (0)