summary refs log tree commit diff stats
path: root/lib/impure
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2017-02-05 12:10:57 +0100
committerAndreas Rumpf <rumpf_a@web.de>2017-02-05 12:10:57 +0100
commitd35c561759d98115f75c1d06e2f42c73366d8d09 (patch)
tree9b80c2cae9517c38300c67e1d9f83f21f78fdb0e /lib/impure
parent63822932556c9eb68eff08c8b60fefe518b0d9d2 (diff)
downloadNim-d35c561759d98115f75c1d06e2f42c73366d8d09.tar.gz
fixes #4996
Diffstat (limited to 'lib/impure')
-rw-r--r--lib/impure/nre.nim9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/impure/nre.nim b/lib/impure/nre.nim
index 626c3fd6b..dda4b033f 100644
--- a/lib/impure/nre.nim
+++ b/lib/impure/nre.nim
@@ -23,6 +23,15 @@ export options
 ##
 ## A regular expression library for Nim using PCRE to do the hard work.
 ##
+## **Note**: If you love ``sequtils.toSeq`` we have bad news for you. This
+## library doesn't work with it due to documented compiler limitations. As
+## a workaround, use this:
+##
+## .. code-block:: nim
+##
+##    import nre except toSeq
+##
+##
 ## Licencing
 ## ---------
 ##