Skip to content

Commit e2e8eca

Browse files
authored
Update ch01-02-hello-world.md
* call it main.rs の call はここでは「名付ける」という動作を表しているので、「というファイル名にしてください」にする * what just happened の just は「ちょうど」ではなく「たった今……したばかり」
1 parent 855e3d4 commit e2e8eca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ch01-02-hello-world.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ an underscore to separate them. For example, use *hello_world.rs* rather than
106106
*helloworld.rs*.
107107
-->
108108

109-
次にソースファイルを作り、*main.rs*と呼んでください。Rustのファイルは常に *.rs*という拡張子で終わります。
109+
次にソースファイルを作り、*main.rs*というファイル名にしてください。Rustのファイルは常に *.rs*という拡張子で終わります。
110110
ファイル名に2単語以上使っているなら、アンダースコアで区切ってください。例えば、*helloworld.rs*ではなく、
111111
*hello_world.rs*を使用してください。
112112

@@ -189,7 +189,7 @@ Let’s review in detail what just happened in your Hello, world! program.
189189
Here’s the first piece of the puzzle:
190190
-->
191191

192-
Hello, world!プログラムでちょうど何が起こったのか詳しく確認しましょう
192+
Hello, world!プログラムでいま何が起こったのか詳しく確認しましょう
193193
こちらがパズルの最初のピースです:
194194

195195
```rust

0 commit comments

Comments
 (0)