From 38f2b885c02e20e7d60b50375241414073b74090 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 29 Dec 2017 11:06:04 +0530 Subject: [PATCH] Fix #1740461 [doc -- regular expression write-up syntax error](https://bugs.launchpad.net/calibre/+bug/1740461) --- manual/regexp_quick_reference.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/regexp_quick_reference.rst b/manual/regexp_quick_reference.rst index 60cd05a3b1..8de483d0b1 100644 --- a/manual/regexp_quick_reference.rst +++ b/manual/regexp_quick_reference.rst @@ -60,7 +60,7 @@ Shorthand character classes | ``\D`` | Any non-numeric character (same as ``[^0-9]``) | | | | +---------------------+----------------------------------------------------------------------------------------------------------------------------------------------+ -| ``\w`` | An alphanumeric character plus the underscore (``[a-zA-Z0-9_]``) including characters with accent mark and ligatures | +| ``\w`` | An alphanumeric character (``[a-zA-Z0-9]``) including characters with accent mark and ligatures | | | | +---------------------+----------------------------------------------------------------------------------------------------------------------------------------------+ | ``\W`` | Any “non-word” character |