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 e2c2d3e commit 0d5c521Copy full SHA for 0d5c521
second-edition/src/ch19-04-advanced-types.md
@@ -256,7 +256,7 @@ fn bar() -> ! {
256
<!-- so `bar` can never possibly return. -->
257
258
このコードは、「関数`bar`はneverを返す」と解読します。neverを返す関数は、*発散する関数*(diverging function)と呼ばれます。
259
-型`!`の値は生成できないので、`bar`が有効値を返すことは決してできません。
+型`!`の値は生成できないので、`bar`からリターンする(呼び出し元に制御を戻す)ことは決してできません。
260
261
<!-- But what use is a type you can never create values for? Recall the code from -->
262
<!-- Listing 2-5; we’ve reproduced part of it here in Listing 19-34. -->
0 commit comments