fix some more nits
[rust-101.git] / src / part05.rs
index c0a573b7750159c015f83bc7636c0d54543bca7e..7ad87545a92c80a5b21ef507b2bd26f9e40c3fab 100644 (file)
@@ -6,6 +6,7 @@
 //@ In the course of the next few parts, we are going to build a data-structure for computations
 //@ with *big* numbers. We would like to not have an upper bound to how large these numbers can
 //@ get, with the memory of the machine being the only limit.
+//@
 //@ We start by deciding how to represent such big numbers. One possibility here is to use a vector
 //@ "digits" of the number. This is like "1337" being a vector of four digits (1, 3, 3, 7), except
 //@ that we will use `u64` as type of our digits, meaning we have 2^64 individual digits. Now we