Skip to content

Commit 38a7898

Browse files
authored
docs: apply suggestions from code review
Signed-off-by: Muhammad Haris <[email protected]>
1 parent c1f409d commit 38a7898

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/string/base/slice/test

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/string/base/slice/test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ tape( 'the function returns an empty string if provided a second argument greate
6565
t.end();
6666
});
6767

68-
tape( 'the function supports slicing the UTF-16 code units of a provided string (positive indices)', function test( t ) {
68+
tape( 'the function slices the UTF-16 code units of a provided string (positive indices)', function test( t ) {
6969
var out;
7070

7171
out = slice( 'hello world', 1, 11 );
@@ -83,7 +83,7 @@ tape( 'the function supports slicing the UTF-16 code units of a provided string
8383
t.end();
8484
});
8585

86-
tape( 'the function slicing the UTF-16 code units of a provided string (negative start index)', function test( t ) {
86+
tape( 'the function slices the UTF-16 code units of a provided string (negative start index)', function test( t ) {
8787
var out;
8888

8989
out = slice( 'hello world', -4, 11 );
@@ -101,7 +101,7 @@ tape( 'the function slicing the UTF-16 code units of a provided string (negative
101101
t.end();
102102
});
103103

104-
tape( 'the function slicing the UTF-16 code units of a provided string (negative end index)', function test( t ) {
104+
tape( 'the function slices the UTF-16 code units of a provided string (negative end index)', function test( t ) {
105105
var out;
106106

107107
out = slice( 'hello world', 0, -8 );

0 commit comments

Comments
 (0)