@@ -377,7 +377,7 @@ tape( 'the function returns the output matrix (accessors)', function test( t ) {
377377 t . end ( ) ;
378378} ) ;
379379
380- tape ( 'the function supports specifying a stride (row-major)' , function test ( t ) {
380+ tape ( 'the function supports specifying a stride for `x` (row-major)' , function test ( t ) {
381381 var expected ;
382382 var out ;
383383 var x ;
@@ -394,7 +394,7 @@ tape( 'the function supports specifying a stride (row-major)', function test( t
394394 t . end ( ) ;
395395} ) ;
396396
397- tape ( 'the function supports specifying a stride (row-major, accessors)' , function test ( t ) {
397+ tape ( 'the function supports specifying a stride for `x` (row-major, accessors)' , function test ( t ) {
398398 var expected ;
399399 var out ;
400400 var x ;
@@ -410,7 +410,7 @@ tape( 'the function supports specifying a stride (row-major, accessors)', functi
410410 t . end ( ) ;
411411} ) ;
412412
413- tape ( 'the function supports specifying a negative stride (row-major)' , function test ( t ) {
413+ tape ( 'the function supports specifying a negative stride for `x` (row-major)' , function test ( t ) {
414414 var expected ;
415415 var out ;
416416 var x ;
@@ -428,7 +428,7 @@ tape( 'the function supports specifying a negative stride (row-major)', function
428428 t . end ( ) ;
429429} ) ;
430430
431- tape ( 'the function supports specifying a stride (column-major)' , function test ( t ) {
431+ tape ( 'the function supports specifying a stride for `x` (column-major)' , function test ( t ) {
432432 var expected ;
433433 var out ;
434434 var x ;
@@ -445,7 +445,7 @@ tape( 'the function supports specifying a stride (column-major)', function test(
445445 t . end ( ) ;
446446} ) ;
447447
448- tape ( 'the function supports specifying a stride (column-major, accessors)' , function test ( t ) {
448+ tape ( 'the function supports specifying a stride for `x` (column-major, accessors)' , function test ( t ) {
449449 var expected ;
450450 var out ;
451451 var x ;
@@ -461,7 +461,7 @@ tape( 'the function supports specifying a stride (column-major, accessors)', fun
461461 t . end ( ) ;
462462} ) ;
463463
464- tape ( 'the function supports specifying a negative stride (column-major)' , function test ( t ) {
464+ tape ( 'the function supports specifying a negative stride for `x` (column-major)' , function test ( t ) {
465465 var expected ;
466466 var out ;
467467 var x ;
@@ -675,7 +675,7 @@ tape( 'the function handles zero values in the input array (row-major, increasin
675675 t . end ( ) ;
676676} ) ;
677677
678- tape ( 'the function handles single column (N=1)' , function test ( t ) {
678+ tape ( 'the function handles a single column (N=1)' , function test ( t ) {
679679 var expected ;
680680 var out ;
681681 var x ;
@@ -692,7 +692,7 @@ tape( 'the function handles single column (N=1)', function test( t ) {
692692 t . end ( ) ;
693693} ) ;
694694
695- tape ( 'the function handles single row (M=1)' , function test ( t ) {
695+ tape ( 'the function handles a single row (M=1)' , function test ( t ) {
696696 var expected ;
697697 var out ;
698698 var x ;
0 commit comments