fix some more nits
[rust-101.git] / src / part00.rs
index eaed3d77fd7ae04c6b967362e8aae04a3441ba76..d8b4ed7bef7786efa986eff6e0afef421e7cf163 100644 (file)
@@ -5,7 +5,6 @@
 // minimum of a list.
 
 //@ ## Getting started
-
 //@ Let us start by thinking about the *type* of our function. Rust forces us to give the types of
 //@ all arguments, and the return type, before we even start writing the body. In the case of our
 //@ minimum function, we may be inclined to say that it returns a number. But then we would be in