From 293fbfc38f5bf2cd1bcfd14d90adf69ebd818bb2 Mon Sep 17 00:00:00 2001 From: Benjamin Lee Date: Tue, 30 Jul 2019 20:15:26 -0700 Subject: [PATCH] Added second missing dyn --- src/ch20-02-multithreaded.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch20-02-multithreaded.md b/src/ch20-02-multithreaded.md index 2e6446348..5ca9358c7 100644 --- a/src/ch20-02-multithreaded.md +++ b/src/ch20-02-multithreaded.md @@ -895,7 +895,7 @@ at Listing 20-19. # use std::sync::mpsc; # struct Worker {} -type Job = Box; +type Job = Box; impl ThreadPool { // --snip--