Update with correct output.

This commit is contained in:
Jan Andersson 2015-05-05 23:19:23 +02:00
parent 6cd7486113
commit 93c06143df

View File

@ -37,7 +37,7 @@
//! }
//! ```
//!
//! This will print `Cons(1, Box(Cons(2, Box(Nil))))`.
//! This will print `Cons(1, Cons(2, Nil))`.
//!
//! Recursive structures must be boxed, because if the definition of `Cons` looked like this:
//!