summary refs log tree commit diff stats
path: root/lib/std
diff options
context:
space:
mode:
authorflywind <xzsflywind@gmail.com>2021-03-06 00:14:26 +0800
committerGitHub <noreply@github.com>2021-03-05 17:14:26 +0100
commite045c28da5265e14fb0866ae4c32143e2590c964 (patch)
treeca0e6f3fb2482b99524e15fc2a6a4bb349e073ed /lib/std
parent19be5eb1ebfc92c66ebf39c81c46209df734e89f (diff)
downloadNim-e045c28da5265e14fb0866ae4c32143e2590c964.tar.gz
add warnings to std/isolation (#17270)
* remove unnecessary when statement

* remove outdated codes

* reuse jsffi

* move js json coverage

* add warnings to std/isolation
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/isolation.nim3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/std/isolation.nim b/lib/std/isolation.nim
index 70395d6d4..94abef807 100644
--- a/lib/std/isolation.nim
+++ b/lib/std/isolation.nim
@@ -10,6 +10,9 @@
 ## This module implements the `Isolated[T]` type for
 ## safe construction of isolated subgraphs that can be
 ## passed efficiently to different channels and threads.
+##
+## .. warning:: This module is experimental and its interface may change.
+##
 
 type
   Isolated*[T] = object ## Isolated data can only be moved, not copied.