Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed 'Devtools' link #3770

Merged
merged 3 commits into from
Nov 9, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ch01-02-hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ first line declares a function named `main` that has no parameters and returns
nothing. If there were parameters, they would go inside the parentheses `()`.

The function body is wrapped in `{}`. Rust requires curly brackets around all
function bodies. It’s good style to place the opening curly bracket on the same
function bodies. It’s a good style to place the opening curly bracket on the same
0xScratch marked this conversation as resolved.
Show resolved Hide resolved
line as the function declaration, adding one space in between.

> Note: If you want to stick to a standard style across Rust projects, you can
Expand Down Expand Up @@ -197,5 +197,5 @@ grows, you’ll want to manage all the options and make it easy to share your
code. Next, we’ll introduce you to the Cargo tool, which will help you write
real-world Rust programs.

[troubleshooting]: ch01-01-installation.html#troubleshooting
[troubleshooting]: ch01-01-installation.md#troubleshooting
0xScratch marked this conversation as resolved.
Show resolved Hide resolved
[devtools]: appendix-04-useful-development-tools.md