add experimental action
publish release / release (push) Failing after 3m38s

apply formatting
This commit is contained in:
2026-05-08 22:30:11 +02:00
parent 51b1123cf9
commit d9ade649d3
17 changed files with 242 additions and 143 deletions
+4 -5
View File
@@ -77,11 +77,10 @@ mod tests {
let formatted = format_dynamically("{...} is cool!".to_string(), vec!["Rust".to_string()]);
assert_eq!(formatted, "Rust is cool!");
let formatted = format_dynamically("{...}, {...} and {...} are three consecutive numbers.".to_string(), vec![
"1".to_string(),
"2".to_string(),
"3".to_string(),
]);
let formatted = format_dynamically(
"{...}, {...} and {...} are three consecutive numbers.".to_string(),
vec!["1".to_string(), "2".to_string(), "3".to_string()],
);
assert_eq!(formatted, "1, 2 and 3 are three consecutive numbers.");
}
}