Skip to content

Commit

Permalink
Update src/daft-dsl/src/functions/numeric/sqrt.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Colin Ho <[email protected]>
  • Loading branch information
dmaymay and colin-ho committed May 1, 2024
1 parent 895e7c6 commit 7aa0f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daft-dsl/src/functions/numeric/sqrt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl FunctionEvaluator for SqrtEvaluator {
DataType::Float64 => DataType::Float64,
_ => {
return Err(DaftError::TypeError(format!(
"Expected input to compute exp to be numeric, got {}",
"Expected input to sqrt to be numeric, got {}",
field.dtype
)))
}
Expand Down

0 comments on commit 7aa0f89

Please sign in to comment.