Skip to content

Commit

Permalink
Add documentation about IDE support (#1827)
Browse files Browse the repository at this point in the history
  • Loading branch information
senekor authored Dec 19, 2023
1 parent f3e544c commit f75c6f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions docs/INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,11 @@
To get the recommended installation instructions for your platform,
head over to [the official Rust website].

Having the toolchain installed is not everything!
IDE support is a huge productivity boost that most developers have come to expect.
If you are using Visual Studio Code, check out its [documentation for Rust support][vscode].
We also recommend you whole-heartedly to enable [linting with clippy][vscode-linting]!

[the official Rust website]: https://www.rust-lang.org/tools/install
[vscode]: https://code.visualstudio.com/docs/languages/rust
[vscode-linting]: https://code.visualstudio.com/docs/languages/rust#_linting
2 changes: 1 addition & 1 deletion exercises/shared/.docs/debug.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ You can write to standard out using `println!`:
println!("Debug message");
```

Use braces `{}` to print the value of a variable or expressions:
Use braces `{}` to print the value of a variable or expression:

```rust
let secret_number = 4321;
Expand Down

0 comments on commit f75c6f8

Please sign in to comment.