diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2017-02-05 12:10:57 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-02-05 12:10:57 +0100 |
commit | d35c561759d98115f75c1d06e2f42c73366d8d09 (patch) | |
tree | 9b80c2cae9517c38300c67e1d9f83f21f78fdb0e /lib/impure | |
parent | 63822932556c9eb68eff08c8b60fefe518b0d9d2 (diff) | |
download | Nim-d35c561759d98115f75c1d06e2f42c73366d8d09.tar.gz |
fixes #4996
Diffstat (limited to 'lib/impure')
-rw-r--r-- | lib/impure/nre.nim | 9 |
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 ## --------- ## |