Skip to content

Commit

Permalink
Fixup Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
iwillspeak committed Oct 3, 2020
1 parent b21885c commit 834235a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/recipe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 834235a

Please sign in to comment.