Fixing a title and line wrapping in Appendix D

This commit is contained in:
Carol (Nichols || Goulding) 2018-11-12 17:17:50 -05:00
parent 93290a3613
commit 156f15f21a
No known key found for this signature in database
GPG Key ID: D04B39A6CA243902
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# D - Useful Development Tools
# Appendix D - Useful Development Tools
In this appendix, well talk about tools provided by the Rust project that are
useful when developing Rust code.
@ -120,7 +120,8 @@ To take any Cargo project and run clippys lints on it:
$ cargo clippy
```
For example, if you write a program that uses an approximation of a mathematical constant such as pi, as this program does:
For example, if you write a program that uses an approximation of a
mathematical constant such as pi, as this program does:
<span class="filename">Filename: src/main.rs</span>