We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84959fa commit 751e6c3Copy full SHA for 751e6c3
src/scope/lifetime/static_lifetime.md
@@ -116,7 +116,7 @@ It's important to understand this means that any owned data always passes
116
a `'static` lifetime bound, but a reference to that owned data generally
117
does not:
118
-->
119
-ここで注意しなければいけないのは、所有権のあるデータが`'static`ライフタイム境界をパスするとしても、そのデータへの参照は`'static`ライフタイム境界をパスしないということです。
+次のポイントを押さえておきましょう。所有権のあるデータが`'static`ライフタイム境界をパスするとしても、そのデータへの参照が`'static`ライフタイム境界をパスするとは限りません。
120
121
```rust,editable,compile_fail
122
use std::fmt::Debug;
0 commit comments