Tune part 16
[rust-101.git] / workspace / src / part16.rs
index d0b173ab2e1a7e10faa5ff5f8337fadbcb4e7dca..835b8b85710a01e0bef3511b241c317410a25a16 100644 (file)
@@ -94,6 +94,7 @@ impl<'a, T> Iterator for IterMut<'a, T> {
 // Add testcases for both kinds of iterators.
 
 // ## `Drop`
+
 impl<T> Drop for LinkedList<T> {
     // The destructor itself is a method which takes `self` in mutably borrowed form. It cannot own `self`, because then
     // the destructor of `self` would be called at the end pf the function, resulting in endless recursion...