summary refs log tree commit diff stats
path: root/lib/system.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/system.nim')
-rw-r--r--lib/system.nim2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 10720f2fc..65d5fa16a 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -3831,8 +3831,6 @@ template closureScope*(body: untyped): untyped =
 
 template once*(body: untyped): untyped =
   ## Executes a block of code only once (the first time the block is reached).
-  ## When hot code reloading is enabled, protects top-level code from being
-  ## re-executed on each module reload.
   ##
   ## .. code-block:: nim
   ##