Skip to content

Commit

Permalink
removed misguiding comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Vilayat-Ali committed Nov 1, 2023
1 parent e8d3d37 commit beeff41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/series/num_series.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub trait NumSeries {
fn mul(&mut self, num: f64);
fn div(&mut self, num: f64);

fn replace_with(&mut self, val: Option<f64>); // fill empty values
fn replace_with(&mut self, val: Option<f64>);
fn filter<T>(&self, predicate: T) -> Option<Vec<f64>> where T: FnMut(&f64) -> bool;
}

Expand Down

0 comments on commit beeff41

Please sign in to comment.