diff --git a/src/data.rs b/src/data.rs index 85ffdbc..cf3074a 100644 --- a/src/data.rs +++ b/src/data.rs @@ -20,7 +20,7 @@ pub fn load_csv(path: &str) -> Vec { volume: cols[5].parse().expect("Bad volume"), }; - bars.push(bar); + bars.push(bar); // pushes each bar from the csv to an element in Bar }