Docs: a tiny modification

This commit is contained in:
Tang Chenglong 2016-03-26 21:18:08 +08:00
parent c9b6ba800a
commit e469c79de8
1 changed files with 1 additions and 1 deletions

View File

@ -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, weve given it a known size, and allowing it to
closure. By `Box`ing it up, weve given it a known size, allowing it to
escape our stack frame.