diff options
| author | Fuwn <[email protected]> | 2021-03-23 13:24:05 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-03-23 13:24:05 +0000 |
| commit | 60bf9928ab43b45a4aea2eac22c3dc4fd2518ce5 (patch) | |
| tree | 9d397f5a5e1d0c05a1f19a6f8657132093bd8ee5 /src | |
| parent | feature: Send WORLDSMASTER greeting on join (diff) | |
| download | whirl-60bf9928ab43b45a4aea2eac22c3dc4fd2518ce5.tar.xz whirl-60bf9928ab43b45a4aea2eac22c3dc4fd2518ce5.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. } } |