about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTang Chenglong <ideami@outlook.com>2016-03-26 21:18:08 +0800
committerTang Chenglong <ideami@outlook.com>2016-03-26 21:18:08 +0800
commite469c79de810b1e16ddfba4296da49fc077c9938 (patch)
tree8aa09b1907691d130f6d2862f99e4edc53688963
parentc9b6ba800aba1e4caf8548904d2957f5cfda2758 (diff)
downloadrust-e469c79de810b1e16ddfba4296da49fc077c9938.tar.gz
rust-e469c79de810b1e16ddfba4296da49fc077c9938.zip
Docs: a tiny modification
-rw-r--r--src/doc/book/closures.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/closures.md b/src/doc/book/closures.md
index 237545edc05..2afe995aeea 100644
--- a/src/doc/book/closures.md
+++ b/src/doc/book/closures.md
@@ -502,5 +502,5 @@ assert_eq!(6, answer);
 ```
 
 By making the inner closure a `move Fn`, we create a new stack frame for our
-closure. By `Box`ing it up, we’ve given it a known size, and allowing it to
+closure. By `Box`ing it up, we’ve given it a known size, allowing it to
 escape our stack frame.