fix initial vector bug
This commit is contained in:
parent
76c7f949ea
commit
0cf5f63bd0
1 changed files with 1 additions and 1 deletions
|
|
@ -120,7 +120,7 @@ impl RecipeListChange {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut checked = Vec::with_capacity(length_for_checking);
|
let mut checked: Vec<Vec<String>> = vec![Vec::new(); length_for_checking];
|
||||||
|
|
||||||
for ci in 0..length_for_checking {
|
for ci in 0..length_for_checking {
|
||||||
let current_repl = (self.raw_old.get(ci), self.raw_new.get(ci));
|
let current_repl = (self.raw_old.get(ci), self.raw_new.get(ci));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue