Fix #1740461 [doc -- regular expression write-up syntax error](https://bugs.launchpad.net/calibre/+bug/1740461)

This commit is contained in:
Kovid Goyal 2017-12-29 11:06:04 +05:30
parent 10254b86f1
commit 38f2b885c0
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -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 |