diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-05 18:24:42 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-05 18:24:42 +0000 |
commit | c81e5e79a0f2f5c2ac1896fa51cbe47e2e2a8d97 (patch) | |
tree | 5211ea86daed8e43c3dd25458e808c3d32100097 /runtime/doc/usr_12.txt | |
parent | 9aae141a6bcfc26bcce352deb8bf34566a3e1be2 (diff) | |
download | vim-git-c81e5e79a0f2f5c2ac1896fa51cbe47e2e2a8d97.tar.gz |
updated for version 7.1a
Diffstat (limited to 'runtime/doc/usr_12.txt')
-rw-r--r-- | runtime/doc/usr_12.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/usr_12.txt b/runtime/doc/usr_12.txt index 1e2ee2475..919cd4fe5 100644 --- a/runtime/doc/usr_12.txt +++ b/runtime/doc/usr_12.txt @@ -1,4 +1,4 @@ -*usr_12.txt* For Vim version 7.0. Last change: 2006 Apr 24 +*usr_12.txt* For Vim version 7.1a. Last change: 2006 Nov 18 VIM USER MANUAL - by Bram Moolenaar @@ -38,8 +38,8 @@ match the start of a word: > :%s/\<four/4/g -Obviously, this still goes wrong on "fourty". Use "\>" to match the end of a -word: > +Obviously, this still goes wrong on "fourteen". Use "\>" to match the end of +a word: > :%s/\<four\>/4/g |