Tholp's bespoke website generator

Fix for_each_file_in_group_reverse not actually doing anything different

+2 -2
+2 -2
src/macros/for_each.rs
··· 139 139 scope: &[Token], 140 140 ) -> Vec<Token> { 141 141 let mut files: Vec<String> = Vec::new(); 142 - for g in proj_context.filegroups.iter().rev() { 142 + for g in &proj_context.filegroups { 143 143 if g.name == args[1] { 144 - for f in &g.files { 144 + for f in g.files.iter().rev() { 145 145 let path = f 146 146 .file_input 147 147 .strip_prefix(&proj_context.input_folder)