diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2015-04-15 17:32:21 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2015-04-15 17:32:21 +0200 |
commit | 97cb0eb694f1176ac7af50a447a47c60989a81a4 (patch) | |
tree | 3444c1e26e06a72f6aa9aac15076d177405e00d0 /lib/impure/re.nim | |
parent | 8e73978c68d519a50c508d0ad417302dab2e245f (diff) | |
parent | aa327efa98ab90e70b6bd1ee6085fa2e1e4fda46 (diff) | |
download | Nim-97cb0eb694f1176ac7af50a447a47c60989a81a4.tar.gz |
Merge pull request #2560 from BlaXpirit/re-nre-hint
Add a hint about NRE library to 're' module
Diffstat (limited to 'lib/impure/re.nim')
-rw-r--r-- | lib/impure/re.nim | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/impure/re.nim b/lib/impure/re.nim index 049064b9c..c2f93ce79 100644 --- a/lib/impure/re.nim +++ b/lib/impure/re.nim @@ -7,8 +7,11 @@ # distribution, for details about the copyright. # -## Regular expression support for Nim. Consider using the pegs module -## instead. +## Regular expression support for Nim. Consider using the pegs module instead. +## +## There is an alternative regular expressions library with a more unified API: +## `nre <https://github.com/flaviut/nre>`_. It may be added to the standard +## library in the future, instead of `re`. ## ## **Note:** The 're' proc defaults to the **extended regular expression ## syntax** which lets you use whitespace freely to make your regexes readable. |