correct space formatting in heap_print

This commit is contained in:
Mark Thom
2018-12-19 00:26:46 -07:00
parent 9064f73655
commit 6f0018c3e0
2 changed files with 65 additions and 23 deletions

View File

@@ -50,6 +50,10 @@ impl HCValueOutputter for TestOutputter {
}
}
fn insert_from_end(&mut self, idx: usize, c: char) {
self.focus.insert(idx, c);
}
fn result(self) -> Self::Output {
self.results
}