write a lot on Copy and Clone. Now part 05 is too long...
[rust-101.git] / src / part02.rs
index 233fa0f7a3eba0ff3066ae906297eefb1e2fa4fc..d0cbbf77d93dae99d0e3c71e0a1d92bf1a17662d 100644 (file)
@@ -30,7 +30,7 @@ type NumberOrNothing = SomethingOrNothing<i32>;
 // The types are so similar, that we can provide a generic function to construct a `SomethingOrNothing<T>`
 // from an `Option<T>`, and vice versa.
 
-// **Exercise**: Implement such functions! I provided a skeleton of the solution. Here,
+// **Exercise 02.1**: Implement such functions! I provided a skeleton of the solution. Here,
 // `panic!` is another macro. This one terminates execution with the given message.
 // 
 // Notice the syntax for giving generic implementations to generic types: Think of the first `<T>`