Skip to content

Commit 796b4d0

Browse files
committed
Move comment back to where it should be
1 parent 321c392 commit 796b4d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ fn main() -> Result<(), Box<Error>> {
2626
let matches = cli_matches(); // Read command line arguments
2727
let mut mesh_queue: Vec<SimpleMesh> = vec![]; // A list of meshes to render
2828
for slice in matches.value_of("INPUT FILENAME").unwrap().split(' ') {
29-
// Fill list with file inputs (Splits for spaces -> multiple files)
3029
let error = |s: &str, e: &str| -> Vec<SimpleMesh> {
3130
println!("filename: [{}] couldn't load, {}. {}", slice, s, e);
3231
vec![]
3332
};
33+
// Fill list with file inputs (Splits for spaces -> multiple files)
3434
let path = Path::new(slice);
3535
let mut meshes = match path.extension() {
3636
None => error("couldn't determine filename extension", ""),

0 commit comments

Comments
 (0)