about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorparir <peer.aramillo.irizar@gmail.com>2015-05-15 11:28:32 +0200
committerparir <peer.aramillo.irizar@gmail.com>2015-05-15 11:28:32 +0200
commit94ecc372b20c06b0f41687180daff3c8ca1d0df8 (patch)
treea9141543531c9bc405b940ed8b166b57c2bf6237 /src
parenta49951732890b6d72d49ae97d480fd3f610fb56d (diff)
downloadrust-94ecc372b20c06b0f41687180daff3c8ca1d0df8.tar.gz
rust-94ecc372b20c06b0f41687180daff3c8ca1d0df8.zip
5 != 4
Closes #25430
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/dining-philosophers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/dining-philosophers.md b/src/doc/trpl/dining-philosophers.md
index 87877f02fac..b179c90ceb9 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<_> =