slightly better docs for re module

This commit is contained in:
Araq
2015-02-01 11:57:13 +01:00
parent 9bd72fc0d9
commit a6082b2a20

View File

@@ -9,6 +9,12 @@
## Regular expression support for Nim. Consider using the pegs module
## instead.
##
## **Note:** The 're' proc defaults to the **extended regular expression
## syntax** which lets you use whitespace freely to make your regexes readable.
## However, this means to match whitespace ``\s`` or something similar has
## to be used.
##
## This module is implemented by providing a wrapper around the
## `PRCE (Perl-Compatible Regular Expressions) <http://www.pcre.org>`_
## C library. This means that your application will depend on the PRCE