Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
esyede authored Aug 26, 2024
1 parent 26019b0 commit e5108fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ protected function compileContinue($condition)
preg_match('/\(\s*(-?\d+)\s*\)$/', $condition, $matches);
return $matches
? '<?php continue '.max(1, $matches[1]).'; ?>'
: "<?php if{$value} continue; ?>";
: "<?php if{$condition} continue; ?>";
}

return '<?php continue; ?>';
Expand Down

0 comments on commit e5108fb

Please sign in to comment.