diff --git a/README.md b/README.md index 18643f2..961ad3a 100644 --- a/README.md +++ b/README.md @@ -62,10 +62,10 @@ let mb: Matrix = let fa: Frame = Frame::new( ma.clone(), - Some(col_names.clone()), + col_names.clone(), Some(RowIndex::Date(dates.clone())), ); -let fb: Frame = Frame::new(mb, Some(col_names), Some(RowIndex::Date(dates))); +let fb: Frame = Frame::new(mb, col_names, Some(RowIndex::Date(dates))); // Math that reads like math let result: Frame = &fa * &fb; // element‑wise multiply