Standardize on the children name instead of contents.

This commit is contained in:
Tom Alexander
2023-04-03 17:33:01 -04:00
parent 11f127b545
commit 9ad428bb20
2 changed files with 11 additions and 3 deletions

View File

@@ -71,7 +71,7 @@ pub fn plain_list_item<'r, 's>(
source,
indentation: indent_level,
bullet: bull,
contents: Vec::new(),
children: Vec::new(),
},
));
}
@@ -86,7 +86,7 @@ pub fn plain_list_item<'r, 's>(
source,
indentation: indent_level,
bullet: bull,
contents,
children: contents,
},
));
}