fix my own error

This commit is contained in:
Lokathor
2020-07-03 21:45:55 -06:00
parent ef35f990e8
commit d8420baa58
+1 -1
View File
@@ -134,7 +134,7 @@ where
arr.swap(i, l1);
}
self.len -= L::from(1);
return take(&mut arr[l1]);
return Some(take(&mut arr[l1]));
}
}
None