Fixed lint issues & cleaned up some documentation.

This commit is contained in:
shan 2022-10-06 07:28:05 -07:00
parent 1eb8d972ba
commit cb7c467654
24 changed files with 33 additions and 40 deletions

View file

@ -256,4 +256,4 @@ pub fn attribute_count_of<'a>(meshes: &'a [Mesh<'a>]) -> (usize, usize) {
.fold((0, 0), |(total_v, total_i), (v, i)| {
(total_v + v, total_i + i)
})
}
}