fixed bad helper thing by un-fixing the thing i fixed before and i don't understand what changed

This commit is contained in:
Valerie Wolfe 2024-07-12 19:22:37 -04:00
parent d144bd9245
commit c09d6c2854

View file

@ -15,7 +15,7 @@ pub fn fix(arg: &Value) -> EvalResult {
let count = args.len(); let count = args.len();
if count != 2 { if count != 2 {
return Err(EvalexprError::WrongFunctionArgumentAmount { expected: 2..=2, actual: count }); return Err(EvalexprError::WrongFunctionArgumentAmount { expected: 2, actual: count });
} }
let float = args[0].as_float()?; let float = args[0].as_float()?;
@ -63,7 +63,7 @@ pub fn logarithm(arg: &Value) -> EvalResult {
output = value.log(base).into(); output = value.log(base).into();
}, },
_ => { _ => {
return Err(EvalexprError::WrongFunctionArgumentAmount { expected: 2..=2, actual: count }); return Err(EvalexprError::WrongFunctionArgumentAmount { expected: 2, actual: count });
} }
} }
return Ok(output); return Ok(output);