]> git.ipfire.org Git - thirdparty/bash.git/blobdiff - tests/array.tests
Imported from ../bash-3.0.16.tar.gz.
[thirdparty/bash.git] / tests / array.tests
index db02c895def316018a43b8cf7258eb9997d6fef4..4f5d830dc8bfac2235e1c490a084e9183df0afda 100644 (file)
@@ -322,7 +322,7 @@ echo ${av[@]:3:5}   # how about too many elements?
 
 echo positive offset - expect five seven
 echo ${av[@]:5:2}
-echo negative offset - expect five seven
+echo negative offset to unset element - expect seven
 echo ${av[@]: -2:2}
 
 echo positive offset 2 - expect seven