From 94ecc372b20c06b0f41687180daff3c8ca1d0df8 Mon Sep 17 00:00:00 2001 From: parir Date: Fri, 15 May 2015 11:28:32 +0200 Subject: [PATCH] 5 != 4 Closes #25430 --- src/doc/trpl/dining-philosophers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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<_> =