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 1447db1 commit 911a3beCopy full SHA for 911a3be
src/ch02-00-guessing-game-tutorial.md
@@ -142,7 +142,7 @@ allow the player to input a guess. Enter the code in Listing 2-1 into
142
*src/main.rs*.
143
-->
144
145
-数当てゲームプログラムの最初の部分は、ユーザに入力を求め、その入力を処理し、期待した形式(訳注:数値データ)になっていることを確認することです。
+数当てゲームプログラムの最初の部分は、ユーザに入力を求め、その入力を処理し、期待した形式になっていることを確認することです。
146
手始めに、プレーヤーが予想を入力できるようにしましょう。
147
リスト2-1のコードを*src/main.rs*に入力してください。
148
@@ -446,7 +446,7 @@ discuss what this line does.
446
447
しかし、長い行は読みづらいので分割したほうがよいでしょう。
448
`.method_name()`構文でメソッドを呼び出すとき、長い行を改行と空白で分割するのが賢明なことがよくあります。
449
-それでは、この行が何をするのか説明します。
+それでは、この行(`expect()`メソッド)が何をするのか説明します。
450
451
<!--
452
As mentioned earlier, `read_line` puts whatever the user enters into the string
0 commit comments