We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e6a3dab + f8bbf6d commit c09437aCopy full SHA for c09437a
src/doc/guide.md
@@ -152,7 +152,7 @@ Save the file, and then type this into your terminal window:
152
153
```{bash}
154
$ rustc main.rs
155
-$ ./hello_world # or hello_world.exe on Windows
+$ ./main # or main.exe on Windows
156
Hello, world!
157
```
158
@@ -232,10 +232,10 @@ main.exe main.rs
232
233
234
There are now two files: our source code, with the `.rs` extension, and the
235
-executable (`hello_world.exe` on Windows, `hello_world` everywhere else)
+executable (`main.exe` on Windows, `main` everywhere else)
236
237
238
239
240
241
This prints out our `Hello, world!` text to our terminal.
0 commit comments