diff options
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 |