Index: doc/regexp.rdoc =================================================================== --- doc/regexp.rdoc (revision 48903) +++ doc/regexp.rdoc (working copy) @@ -128,8 +128,8 @@ * /\D/ - A non-digit character ([^0-9]) * /\h/ - A hexdigit character ([0-9a-fA-F]) * /\H/ - A non-hexdigit character ([^0-9a-fA-F]) -* /\s/ - A whitespace character: /[ \t\r\n\f]/ -* /\S/ - A non-whitespace character: /[^ \t\r\n\f]/ +* /\s/ - A whitespace character: /[ \t\r\n\f\v]/ +* /\S/ - A non-whitespace character: /[^ \t\r\n\f\v]/ POSIX bracket expressions are also similar to character classes. They provide a portable alternative to the above, with the added benefit