From eaa1505c947c7987cdbd31c24056823c740e84e0 Mon Sep 17 00:00:00 2001
From: Sebastien Bourdeauducq <sb@m-labs.hk>
Date: Sat, 8 Jan 2022 11:55:52 +0800
Subject: [PATCH] update documentation (#1820)

---
 artiq/language/environment.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/artiq/language/environment.py b/artiq/language/environment.py
index ad7a165cb..819391925 100644
--- a/artiq/language/environment.py
+++ b/artiq/language/environment.py
@@ -392,11 +392,11 @@ class HasEnvironment:
 
         By default, datasets obtained by this method are archived into the output
         HDF5 file of the experiment. If an archived dataset is requested more
-        than one time (and therefore its value has potentially changed) or is
-        modified, a warning is emitted.
+        than one time or is modified, only the value at the time of the first call
+        is archived. This may impact reproducibility of experiments.
 
         :param archive: Set to ``False`` to prevent archival together with the run's results.
-            Default is ``True``
+            Default is ``True``.
         """
         try:
             return self.__dataset_mgr.get(key, archive)