Merge pull request #799 from MarbleGateKeeper/main

Fix link errors
pull/801/head
Sunface 3 years ago committed by GitHub
commit 38c1177590
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -31,7 +31,7 @@ fn my_function(n: usize) {
#### 切片
切片也是一个典型的 DST 类型,具体详情参见另一篇文章: [易混淆的切片和切片引用](https://course.rs/confonding/slice.html)。
切片也是一个典型的 DST 类型,具体详情参见另一篇文章: [易混淆的切片和切片引用](https://course.rs/difficulties/slice.html)。
#### str

@ -16,7 +16,7 @@ fn print_author(author: &'static str) {
}
```
除此之外,特征对象的生命周期也是 `'static`,例如[这里](https://course.rs/fight-with-compiler/lifetime/closure-with-static.html#特征对象的生命周期)所提到的。
除此之外,特征对象的生命周期也是 `'static`,例如[这里](https://course.rs/compiler/fight-with-compiler/lifetime/closure-with-static.html#特征对象的生命周期)所提到的。
除了 `&'static` 的用法外,我们在另外一种场景中也可以见到 `'static` 的使用:

Loading…
Cancel
Save