summaryrefslogtreecommitdiff
path: root/exercises/20_threads/threads3.rs
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-05-22 15:13:18 +0200
committermo8it <mo8it@proton.me>2024-05-22 15:13:18 +0200
commit7cdf6b79429428e944b440eb713e711d844a92d7 (patch)
tree721e17fd35d3073068023870ed42ff4439c21fae /exercises/20_threads/threads3.rs
parentc8ad6c3960b4bec44a610cc144e6b635bffcbc31 (diff)
Add missing semicolons
Diffstat (limited to 'exercises/20_threads/threads3.rs')
-rw-r--r--exercises/20_threads/threads3.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/20_threads/threads3.rs b/exercises/20_threads/threads3.rs
index 13abc45..37810cf 100644
--- a/exercises/20_threads/threads3.rs
+++ b/exercises/20_threads/threads3.rs
@@ -60,6 +60,6 @@ mod tests {
}
println!("total numbers received: {}", total_received);
- assert_eq!(total_received, queue_length)
+ assert_eq!(total_received, queue_length);
}
}