summary refs log tree commit diff stats
path: root/lib/impure
diff options
context:
space:
mode:
authorJuan Carlos <juancarlospaco@gmail.com>2020-07-03 15:13:10 -0300
committerGitHub <noreply@github.com>2020-07-03 20:13:10 +0200
commit4f6acf24ffde4c43ea9f8c954265d23312453b31 (patch)
treeba7b13030f1184b15307ab2e8bbf87875cf515cc /lib/impure
parenta6cbe58e8c5a9b89d749d9935ee39192de3246d9 (diff)
downloadNim-4f6acf24ffde4c43ea9f8c954265d23312453b31.tar.gz
Add jsre (#14870)
Diffstat (limited to 'lib/impure')
-rw-r--r--lib/impure/nre.nim2
-rw-r--r--lib/impure/re.nim2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/impure/nre.nim b/lib/impure/nre.nim
index fe71f89fe..653d4d1c5 100644
--- a/lib/impure/nre.nim
+++ b/lib/impure/nre.nim
@@ -7,7 +7,7 @@
 #
 
 when defined(js):
-  {.error: "This library needs to be compiled with a c-like backend, and depends on PCRE.".}
+  {.error: "This library needs to be compiled with a c-like backend, and depends on PCRE; See jsre for JS backend.".}
 
 ## What is NRE?
 ## ============
diff --git a/lib/impure/re.nim b/lib/impure/re.nim
index 1a6622677..fe3ea96ff 100644
--- a/lib/impure/re.nim
+++ b/lib/impure/re.nim
@@ -8,7 +8,7 @@
 #
 
 when defined(js):
-  {.error: "This library needs to be compiled with a c-like backend, and depends on PCRE.".}
+  {.error: "This library needs to be compiled with a c-like backend, and depends on PCRE; See jsre for JS backend.".}
 
 ## Regular expression support for Nim.
 ##