We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ec4530 commit 76d9e77Copy full SHA for 76d9e77
index.src.html
@@ -1764,7 +1764,12 @@
1764
2. If `config[m]` is a nested dictionary, set `clone[m]` to the result of
1765
recursively running the <a>Clone Configuration</a> algorithm with
1766
`config[m]`.
1767
- 3. Otherwise, assign the value of `config[m]` to `clone[m]`.
+ 3. Otherwise, assign a copy of `config[m]` to `clone[m]`.
1768
+
1769
+Note: This implements a "deep-copy". Those configuration objects are
1770
+frequently used as the input of asynchronous operations. Copying means that
1771
+modifying the original object while the operation is in flight won't change the
1772
+operation's outcome.
1773
1774
1775
Signalling Configuration Support{#config-support-info}
0 commit comments