Skip to content

Commit

Permalink
Re-add the semicolon after endswitch in alternative-syntax.xml (#2699)
Browse files Browse the repository at this point in the history
This was part of an unrelated commit and is now re-added in a dedicated
single-purpose commit.

see #2648
see #2693
  • Loading branch information
TimWolla authored Aug 21, 2023
1 parent fb21c51 commit a41057c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions language/control-structures/alternative-syntax.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ endif;
<?php switch ($foo): ?>
<?php case 1: ?>
...
<?php endswitch ?>
<?php endswitch; ?>
]]>
</programlisting>
</informalexample>
Expand All @@ -85,7 +85,7 @@ endif;
<?php switch ($foo): ?>
<?php case 1: ?>
...
<?php endswitch ?>
<?php endswitch; ?>
]]>
</programlisting>
</informalexample>
Expand Down

0 comments on commit a41057c

Please sign in to comment.