diff --git a/src/recipe.rs b/src/recipe.rs index 66a7ffaaf6..d854dd5d59 100644 --- a/src/recipe.rs +++ b/src/recipe.rs @@ -211,7 +211,10 @@ impl<'src, D> Recipe<'src, D> { let mut evaluated = String::new(); let mut continued = false; let quiet_command = lines.peek().map(|line| line.is_quiet()).unwrap_or(false); - let infallable_command = lines.peek().map(|line| line.is_infallable()).unwrap_or(false); + let infallable_command = lines + .peek() + .map(|line| line.is_infallable()) + .unwrap_or(false); loop { if lines.peek().is_none() { break;