Rollup merge of #35794 - cantino:fix-typo, r=apasel422

Fix minor typo

Minor typo in the book.
This commit is contained in:
Jonathan Turner 2016-08-20 07:09:35 -07:00 committed by GitHub
commit ad17e0c277

View File

@ -340,7 +340,7 @@ fn call_with_ref<'a, F>(some_closure:F) -> i32
where F: Fn(&'a i32) -> i32 {
```
However this presents a problem with in our case. When you specify the explicit
However this presents a problem in our case. When you specify the explicit
lifetime on a function it binds that lifetime to the *entire* scope of the function
instead of just the invocation scope of our closure. This means that the borrow checker
will see a mutable reference in the same lifetime as our immutable reference and fail