This commit is contained in:
Folkert 2021-07-30 16:54:22 +02:00
parent 46beaf5855
commit e805e63db6
20 changed files with 31 additions and 31 deletions

View file

@ -114,7 +114,7 @@ impl Pools {
pub fn split_last(&self) -> (&Vec<Variable>, &[Vec<Variable>]) {
self.0
.split_last()
.unwrap_or_else(|| panic!("Attempted to split_last() on non-empy Pools"))
.unwrap_or_else(|| panic!("Attempted to split_last() on non-empty Pools"))
}
pub fn extend_to(&mut self, n: usize) {