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.
2 parents cd5ec37 + d714f10 commit d82f165Copy full SHA for d82f165
second-edition/src/ch10-03-lifetime-syntax.md
@@ -847,9 +847,9 @@ fn first_word<'a>(s: &'a str) -> &'a str {
847
<!-- specify how the references relate to each other. -->
848
849
省略規則は、完全な推論を提供しません。コンパイラが決定的に規則を適用できるけれども、
850
-参照が保持するライフタイムに関してそれでも曖昧性があるなら、コンパイラは、残りの参照がなるべきライフタイムを推論しません。
851
-この場合、推論ではなく、コンパイラは、参照がお互いにどう関係するかを指定するライフタイム注釈を追記することで、
852
-解決できるエラーを与えます。
+参照が保持するライフタイムに関してそれでも曖昧性があるなら、コンパイラは、残りの参照がなるべきライフタイムを推測しません。
+この場合コンパイラは、それらを推測するのではなくエラーを与えます。
+これらは、参照がお互いにどう関係するかを指定するライフタイム注釈を追記することで解決できます。
853
854
<!-- Lifetimes on function or method parameters are called *input lifetimes*, and -->
855
<!-- lifetimes on return values are called *output lifetimes*. -->
0 commit comments