diff --git a/src/doc/trpl/dining-philosophers.md b/src/doc/trpl/dining-philosophers.md index 87877f02fac60..b179c90ceb95f 100644 --- a/src/doc/trpl/dining-philosophers.md +++ b/src/doc/trpl/dining-philosophers.md @@ -396,7 +396,7 @@ let handles: Vec<_> = philosophers.into_iter().map(|p| { }).collect(); ``` -While this is only five lines, they’re a dense four. Let’s break it down. +While this is only five lines, they’re a dense five. Let’s break it down. ```rust,ignore let handles: Vec<_> =