You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/std/net.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ Common errors of net package\. Mutation is undefined behavior\.
83
83
```jule
84
84
let mut DefaultResolver = Resolver{ ... }
85
85
```
86
-
Default DNS resolver of the package\.
86
+
Default DNS resolver of the package\. Mutating this variable is not thread\-safe by default\. Most programs only need to configure it once, so performing configuration before introducing concurrency is the most common approach\. Otherwise, atomic access is required for Read/Write operations\.
0 commit comments