Fix comment gone astray

This commit is contained in:
Michael Pankov 2015-10-08 01:08:33 +03:00
parent 3fbbee6ad5
commit 11a7773a3a
1 changed files with 2 additions and 1 deletions

View File

@ -85,8 +85,9 @@ trait GenericRadix {
*byte = self.digit(n.to_u8()); // Store the digit in the buffer.
curr -= 1;
if x == zero {
// No more digits left to accumulate.
break
}; // No more digits left to accumulate.
};
}
}
let buf = unsafe { str::from_utf8_unchecked(&buf[curr..]) };