about summary refs log tree commit diff
path: root/FEATURES
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2009-11-10 22:16:37 +0000
committerBart Schaefer <barts@users.sourceforge.net>2009-11-10 22:16:37 +0000
commitb159a6bba22f78ec4dad1436572b08d7902adb51 (patch)
treeeb6b788678d8584bce7b19def40c8aeee51cf30a /FEATURES
parenta3055b2363b29b7a1569bb2da3a95116cc33dd27 (diff)
downloadzsh-b159a6bba22f78ec4dad1436572b08d7902adb51.tar.gz
zsh-b159a6bba22f78ec4dad1436572b08d7902adb51.tar.xz
zsh-b159a6bba22f78ec4dad1436572b08d7902adb51.zip
27368, 27369: replace one incorrect example with two correct ones
Diffstat (limited to 'FEATURES')
-rw-r--r--FEATURES3
1 files changed, 2 insertions, 1 deletions
diff --git a/FEATURES b/FEATURES
index 10ac67178..2dc27368b 100644
--- a/FEATURES
+++ b/FEATURES
@@ -28,7 +28,8 @@ advanced globbing:
 qualifiers in parentheses after globbing expression:
   ls *(*@)  matches executable files/directories or symlinks
   ls *(L0f.go-w.)  matches all zero-length files not group or world writable
-  ls *(om[2])  matches the two most recently modified files
+  ls *(om[1,3])  matches the three most recently modified files
+  ls *(om[2])  matches the second most recently modified file
 null command shorthands:
   "< file" is same as "more <file"
   "> file" is same as "cat >file"