summaryrefslogtreecommitdiff
path: root/runtime/doc/usr_27.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-02-12 14:29:27 +0000
committerBram Moolenaar <Bram@vim.org>2005-02-12 14:29:27 +0000
commit4399ef4764584a24080670b4869cb8b5d31a4f78 (patch)
treec47e4671d16eeeadc9aa0b9a9cb19576e7c653b9 /runtime/doc/usr_27.txt
parentb11bd7e43f6cdca944dceebaa3c8012d6bf1a74e (diff)
downloadvim-git-4399ef4764584a24080670b4869cb8b5d31a4f78.tar.gz
updated for version 7.0050
Diffstat (limited to 'runtime/doc/usr_27.txt')
-rw-r--r--runtime/doc/usr_27.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/usr_27.txt b/runtime/doc/usr_27.txt
index 82d17b215..b7836ef38 100644
--- a/runtime/doc/usr_27.txt
+++ b/runtime/doc/usr_27.txt
@@ -1,4 +1,4 @@
-*usr_27.txt* For Vim version 7.0aa. Last change: 2004 Jun 26
+*usr_27.txt* For Vim version 7.0aa. Last change: 2005 Feb 08
VIM USER MANUAL - by Bram Moolenaar
@@ -304,9 +304,9 @@ Will match "ab" in "abbb". Actually, it will never match more than one b,
because there is no reason to match more. It requires something else to force
it to match more than the lower limit.
The same rules apply to removing "n" and "m". It's even possible to remove
-both of the numbes, resulting in "\{-}". This matches the item before it zero
-or more times, as few as possible. The item by itself always matches zero
-times. It is useful when combined with something else. Example: >
+both of the numbers, resulting in "\{-}". This matches the item before it
+zero or more times, as few as possible. The item by itself always matches
+zero times. It is useful when combined with something else. Example: >
/a.\{-}b