summary refs log tree commit diff stats
path: root/lib/impure/re.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2015-04-15 17:32:21 +0200
committerAndreas Rumpf <rumpf_a@web.de>2015-04-15 17:32:21 +0200
commit97cb0eb694f1176ac7af50a447a47c60989a81a4 (patch)
tree3444c1e26e06a72f6aa9aac15076d177405e00d0 /lib/impure/re.nim
parent8e73978c68d519a50c508d0ad417302dab2e245f (diff)
parentaa327efa98ab90e70b6bd1ee6085fa2e1e4fda46 (diff)
downloadNim-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.nim7
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.