fmt
This commit is contained in:
@ -109,7 +109,10 @@ pub async fn involute_circular(exec_state: &mut ExecState, args: Args) -> Result
|
|||||||
if end_radius.n < start_radius.n {
|
if end_radius.n < start_radius.n {
|
||||||
return Err(KclError::Semantic(KclErrorDetails {
|
return Err(KclError::Semantic(KclErrorDetails {
|
||||||
source_ranges: vec![args.source_range],
|
source_ranges: vec![args.source_range],
|
||||||
message: format!("endRadius: {0} cannot be less than startRadius: {1}", end_radius.n, start_radius.n)
|
message: format!(
|
||||||
|
"endRadius: {0} cannot be less than startRadius: {1}",
|
||||||
|
end_radius.n, start_radius.n
|
||||||
|
)
|
||||||
.to_owned(),
|
.to_owned(),
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user