File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed 
lib/node_modules/@stdlib/string/base/slice/test Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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  ) ; 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments