Merge pull request #1196 from book-9A18C1C14F804B09BD52E2DFAAB8F20F/main

Typo modification
pull/1204/merge
Sunface 2 years ago committed by GitHub
commit 0f20d86bc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -290,7 +290,7 @@ error[E0507]: cannot move out of borrowed content
又怎么了! (ノಥ益ಥ)ノ ┻━┻
大家还记得之前章节的内容吗?原因是这里我们忘记了 `as_ref` ,然后值的所有权被转移到了 `map` 中,结果我们在内部引用了一个局部值,造成一个悬引用:
大家还记得之前章节的内容吗?原因是这里我们忘记了 `as_ref` ,然后值的所有权被转移到了 `map` 中,结果我们在内部引用了一个局部值,造成一个悬引用:
```rust
pub struct Iter<'a, T> {
next: Option<&'a Node<T>>,

Loading…
Cancel
Save