minor commenting

This commit is contained in:
Khizar Imran
2026-06-04 21:34:26 +01:00
parent 73a144c4df
commit 04b5f405e0
+1 -1
View File
@@ -20,7 +20,7 @@ pub fn load_csv(path: &str) -> Vec<Bar> {
volume: cols[5].parse().expect("Bad volume"),
};
bars.push(bar);
bars.push(bar); // pushes each bar from the csv to an element in Bar
}