aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-03-23 13:24:05 -0700
committerFuwn <[email protected]>2021-03-23 13:24:05 -0700
commit7d30346cf5e9e5edb9410ddc5193155ae6d434b8 (patch)
tree215ad6ed54a534d0ad352bd10f0a8e61758c7ea3 /src
parentfeature: Send WORLDSMASTER greeting on join (diff)
downloadwhirl-7d30346cf5e9e5edb9410ddc5193155ae6d434b8.tar.xz
whirl-7d30346cf5e9e5edb9410ddc5193155ae6d434b8.zip
etc: Annotate reasoning
Diffstat (limited to 'src')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index d6612b2..195303b 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -27,6 +27,6 @@ fn main() {
);
}));
for thread in threads {
- let _ = thread.join();
+ let _ = thread.join(); // Dissolving Result.
}
}