Skip to content

Commit 0affa71

Browse files
committed
getting-started.md: Change expression (スクリーン -> 画面)
「スクリーン」という語は映写機の投影用の平面を連想させる。ここでのscreenという語の指している「画面、ディスプレイ」からずれているので変更した。
1 parent 0fedd53 commit 0affa71

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

1.9/ja/book/getting-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -317,14 +317,14 @@ WindowsではRustをインストールした所の `share/doc` ディレクト
317317
<!-- print the text “Hello, world!” to the screen, and in this section, we'll follow -->
318318
<!-- that tradition. -->
319319
Rustをインストールしたので最初のRustのプログラムを書いていきましょう。
320-
新しい言語を学ぶ時に「Hello, world!」とスクリーンに表示する小さなプログラムを書くのが伝統で、このセクションでもそれに従います。
320+
新しい言語を学ぶ時に「Hello, world!」と画面に表示する小さなプログラムを書くのが伝統で、このセクションでもそれに従います。
321321

322322
<!-- The nice thing about starting with such a simple program is that you can -->
323323
<!-- quickly verify that your compiler is installed, and that it's working properly. -->
324324
<!-- Printing information to the screen is also a pretty common thing to do, so -->
325325
<!-- practicing it early on is good. -->
326326
このように小さなプログラムから始める利点は、コンパイラがインストールされていて、正しく動くことを素早く確認できることです。
327-
情報をスクリーンに表示することも非常によくやるので、早い内に練習しておくのが良いです。
327+
情報を画面に表示することも非常によくやるので、早い内に練習しておくのが良いです。
328328

329329

330330
<!-- &gt; Note: This book assumes basic familiarity with the command line. Rust itself -->
@@ -450,7 +450,7 @@ Rustは全ての関数の本体部に波括弧を要求します。
450450
<!-- This line does all of the work in this little program: it prints text to the -->
451451
<!-- screen. There are a number of details that are important here. The first is -->
452452
<!-- that it’s indented with four spaces, not tabs. -->
453-
この行が今回の小さなプログラムの全てを担っています。これがテキストをスクリーンに印字するのです
453+
この行が今回の小さなプログラムの全てを担っています。これがテキストを画面に印字するのです
454454
ここに重要な詳細がいくつもあります。1つ目はインデントが4スペースであり、タブでない点です。
455455

456456
<!-- The second important part is the `println!()` line. This is calling a Rust -->
@@ -472,7 +472,7 @@ Rustのマクロについては、後の章で詳細に議論しますが、今
472472
<!-- prints the string to the screen. Easy enough! -->
473473
次は 文字列の `"Hello, world"` です。
474474
システムプログラミング言語では文字列は驚くほど複雑なトピックで、これは *[静的に確保された][statically allocated]* 文字列です。
475-
文字列をスクリーンに印字してくれる `println!` にこれを引数として渡します。簡単ですね!
475+
文字列を画面に印字してくれる `println!` にこれを引数として渡します。簡単ですね!
476476

477477
[statically allocated]: the-stack-and-the-heap.html
478478

0 commit comments

Comments
 (0)