Skip to content

Commit f042b6d

Browse files
committed
Update comments
1 parent 685a7ec commit f042b6d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/array/pool/test/test.factory.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1790,7 +1790,7 @@ tape( 'the function supports specifying a high water mark which limits the total
17901790
t.strictEqual( arr1.length, 8, 'returns expected value' );
17911791
t.strictEqual( arr1.byteLength, 64, 'returns expected value' );
17921792

1793-
// Specifying an array length:
1793+
// Specify an array length:
17941794
arr2 = typedarraypool( 1e6, 'float64' );
17951795
t.strictEqual( arr2, null, 'returns expected value' );
17961796

@@ -1800,7 +1800,7 @@ tape( 'the function supports specifying a high water mark which limits the total
18001800
arr2 = typedarraypool.calloc( 1e6, 'float64' );
18011801
t.strictEqual( arr2, null, 'returns expected value' );
18021802

1803-
// Providing a array from which to copy elements:
1803+
// Provide an array from which to copy elements:
18041804
arr2 = typedarraypool( new Float64Array( 20 ), 'float64' );
18051805
t.strictEqual( arr2, null, 'returns expected value' );
18061806

@@ -1812,7 +1812,7 @@ tape( 'the function supports specifying a high water mark which limits the total
18121812

18131813
typedarraypool.free( arr1 );
18141814

1815-
// Specifying an array length:
1815+
// Specify an array length:
18161816
arr2 = typedarraypool( 1e6, 'float64' );
18171817
t.strictEqual( arr2, null, 'returns expected value' );
18181818

@@ -1822,7 +1822,7 @@ tape( 'the function supports specifying a high water mark which limits the total
18221822
arr2 = typedarraypool.calloc( 1e6, 'float64' );
18231823
t.strictEqual( arr2, null, 'returns expected value' );
18241824

1825-
// Providing a array from which to copy elements:
1825+
// Provide an array from which to copy elements:
18261826
arr2 = typedarraypool( new Float64Array( 20 ), 'float64' );
18271827
t.strictEqual( arr2, null, 'returns expected value' );
18281828

0 commit comments

Comments
 (0)