Skip to content
Merged
Changes from all commits
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
3 changes: 2 additions & 1 deletion src/appendix-04-useful-development-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ fn main() {
The `for` loop variable is now named `_i`, and the warning no longer appears.

You can also use the `cargo fix` command to transition your code between
different Rust editions. Editions are covered in Appendix E.
different Rust editions. Editions are covered in [Appendix E][editions].

### More Lints with Clippy

Expand Down Expand Up @@ -178,3 +178,4 @@ particular IDE. Your IDE will gain abilities such as autocompletion, jump to
definition, and inline errors.

[rust-analyzer]: https://rust-analyzer.github.io
[editions]: appendix-05-editions.md