diff --git a/src/misc.rs b/src/misc.rs index 3bcbbb2..1967f0d 100644 --- a/src/misc.rs +++ b/src/misc.rs @@ -312,8 +312,8 @@ pub fn step_helper(max_i: usize, min_x: &f64, step: &f64) -> Vec { (0..max_i).map(|x| (x as f64 * step) + min_x).collect() } -/// Attempts to see what variable `x` is almost // TODO: use in hovering over points +/// Attempts to see what variable `x` is almost #[allow(dead_code)] pub fn almost_variable(x: f64) -> Option { const EPSILON: f32 = f32::EPSILON * 2.0;