Typo modification

pull/1196/head
大漠知秋 2 years ago committed by GitHub
parent e7c6d918e5
commit 2a5c30b204
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