diff options
| author | Tang Chenglong <ideami@outlook.com> | 2016-03-26 21:18:08 +0800 |
|---|---|---|
| committer | Tang Chenglong <ideami@outlook.com> | 2016-03-26 21:18:08 +0800 |
| commit | e469c79de810b1e16ddfba4296da49fc077c9938 (patch) | |
| tree | 8aa09b1907691d130f6d2862f99e4edc53688963 | |
| parent | c9b6ba800aba1e4caf8548904d2957f5cfda2758 (diff) | |
| download | rust-e469c79de810b1e16ddfba4296da49fc077c9938.tar.gz rust-e469c79de810b1e16ddfba4296da49fc077c9938.zip | |
Docs: a tiny modification
| -rw-r--r-- | src/doc/book/closures.md | 2 |
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. |
