rename entry to item

This commit is contained in:
Dietmar Maurer 2018-12-09 10:25:56 +01:00
parent b65eaac62d
commit 5b34c2607d
1 changed files with 3 additions and 3 deletions

View File

@ -61,9 +61,9 @@ impl SectionConfigData {
let mut list: Vec<Value> = vec![];
for (section_id, (_, data)) in &self.sections {
let mut entry = data.clone();
entry.as_object_mut().unwrap().insert(id_prop.into(), section_id.clone().into());
list.push(entry);
let mut item = data.clone();
item.as_object_mut().unwrap().insert(id_prop.into(), section_id.clone().into());
list.push(item);
}
list.into()