Add newlines and reformat for better code quality

This commit is contained in:
Michael Mikovsky
2026-04-24 14:27:55 -06:00
parent fc8638d014
commit 11674bae8f
12 changed files with 43 additions and 25 deletions
+4 -1
View File
@@ -69,7 +69,10 @@ pub fn validate_procedure_id(procedure_id: &str) -> Result<(), ValidationError>
));
}
if !procedure_id.chars().all(|ch| ch.is_ascii_alphanumeric() || ch == '_' || ch == '.') {
if !procedure_id
.chars()
.all(|ch| ch.is_ascii_alphanumeric() || ch == '_' || ch == '.')
{
return Err(ValidationError::ProcedureId(
"procedure identifier should use alphanumeric characters, dots, and underscores",
));