diff options
| author | Fuwn <[email protected]> | 2021-03-23 13:24:05 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-03-23 13:24:05 -0700 |
| commit | 7d30346cf5e9e5edb9410ddc5193155ae6d434b8 (patch) | |
| tree | 215ad6ed54a534d0ad352bd10f0a8e61758c7ea3 /src | |
| parent | feature: Send WORLDSMASTER greeting on join (diff) | |
| download | whirl-7d30346cf5e9e5edb9410ddc5193155ae6d434b8.tar.xz whirl-7d30346cf5e9e5edb9410ddc5193155ae6d434b8.zip | |
etc: Annotate reasoning
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 2 |
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. } } |